node-synonyms icon indicating copy to clipboard operation
node-synonyms copied to clipboard

Python version has different result: "旅游", "游历"

Open wcchh opened this issue 6 years ago • 0 comments

As title. I got 0.17365640608647942 from below :

var synonyms = require("node-synonyms");
synonyms.compare("旅游", "游历") 
	.then(function (similarity) {
		console.log(similarity);
	});

But as Synonyms (Python) has value: 0.872 for this pair. print("旅游, 游历: %s" % (synonyms.compare("旅游", "游历")))

Please let me know how to correct it, thanks in advance.

wcchh avatar Mar 04 '19 08:03 wcchh