PolyFuzz icon indicating copy to clipboard operation
PolyFuzz copied to clipboard

Fuzzy string matching, grouping, and evaluation.

Results 32 PolyFuzz issues
Sort by recently updated
recently updated
newest added

The [docs provide the following example](https://maartengr.github.io/PolyFuzz/tutorial/quickstart/quickstart/#getting-started): ``` from polyfuzz import PolyFuzz from_list = ["apple", "apples", "appl", "recal", "house", "similarity"] to_list = ["apple", "apples", "mouse"] model = PolyFuzz("TF-IDF").match(from_list, to_list) ``` which...

In some documented examples a `model_id` paramater is passed to the constructor of PolyFuzz, but PolyFuzz's constructor don't take such parameter For instance, [the example here](https://maartengr.github.io/PolyFuzz/api/polyfuzz/#polyfuzz.polyfuzz.PolyFuzz.match) ``` import polyfuzz as...

Some examples, for example [this one](https://maartengr.github.io/PolyFuzz/api/polyfuzz/#polyfuzz.polyfuzz.PolyFuzz.match), use a `PolyFuzz.get_all_matches` function which doesn't seem to exist.

Like the title, `pip install polyfuzz[sbert]` won't work with Python 3.12. I think it's because sentence-transformers require transformers

Hello @MaartenGr! A two high severity security alerts in pillow 9.50.0, a dependency of matplotlib has been brought to our attention by dependabot: > Pillow versions before v10.0.1 bundled libwebp...

I have data contains around **166793 Records**, I want to fit this records for TF-IDF Model ```python from polyfuzz.models import TFIDF from polyfuzz import PolyFuzz data=[] # Data contains total...

Hi I am using the Text matching using Poly fuzz ```python import polyfuzz model = polyfuzz.PolyFuzz() model_fit=model.fit(["CIPLAR LA 40 TABLET", "CIPLAR LA 80 TABLET"]) model_fit.transform(['CIPLAR LA 40 TABLET']) output :-...

Hi, I want to have top_n outputs for edit distance as well. Is it possible in current solution?