-
Notifications
You must be signed in to change notification settings - Fork 126
speed of JaroWinkler #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I am not sure why the results are different, but >>> jarowinkler.similarity('My string', 'My tsring')
0.9740740740740741
>>> jarowinkler.similarity('My string', 'My ntrisg')
0.8962962962962963
|
I used python implementation |
I know why the two results are different. |
import warnings
try:
from .cjellyfish import * # noqa
library = "C"
except ImportError:
from ._jellyfish import * # noqa
library = "Python" |
JaroWinkler is slower than jellyfish's implementation. Also, the results are different.
The text was updated successfully, but these errors were encountered: