hmni icon indicating copy to clipboard operation
hmni copied to clipboard

📛 Fuzzy Name Matching with Machine Learning

Results 14 hmni issues
Sort by recently updated
recently updated
newest added

Hi, thanks for this fantastic library.. But, I have an issue I have python 3.8.3. I installed the required libraries that you mentioned, but it was also required to install...

Getting the following error message. `'MinMaxScaler' object has no attribute 'clip'` Can you please review it? ![Screen Shot 2021-03-05 at 3 19 52 PM](https://user-images.githubusercontent.com/11927161/110169146-40daa680-7dc6-11eb-8c05-520dc3ed01fd.png)

I just pip installed it and wanted to try it out, but can't even get that far. :/ If I just have a single line: **import hmni** It immediately fails...

Modified example from the readme.md: import pandas as pd df1 = pd.DataFrame({'name': ['Al', 'Mark', 'James', 'Harold', 'Leon']}) # added name 'Leon' df2 = pd.DataFrame({'name': ['Mark', 'Alan', 'James', 'Harold']}) merged =...

We built a 5000 row proof of concept that searches first and last name only, and it takes about a minute to show a result. Our implementation would need to...

help wanted

FuzzyWuzzy is GPL Licensed and therefore can not be used in MIT licensed project. This Pull Request replaces FuzzyWuzzy with [RapidFuzz](https://github.com/maxbachmann/rapidfuzz), which implements the same algorithms. It is licensed in...

Function tokenize not found in syllable_tokenizer.py file The problem was in featurize function. i think tokenize should be replaced by syllables in the notebook file

Sir, I am simply importing hmni and making a "Matcher" object like: matcher = hmni.Matcher(model='latin') And then I am using "matcher.similarity(str_1, str_2)" But it throws the above header. Can you...

Fixing the package versions removes the import error as seen in Issue #21. Sklearn still gives warnings about the version so not the perfect fix, but the code is runnable...