-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
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
import polyfuzz as pf
model = pf.PolyFuzz("TF-IDF", model_id="TF-IDF")
which return:
TypeError Traceback (most recent call last)
Cell In[12], line 2
1 import polyfuzz as pf
----> 2 model = pf.PolyFuzz("TF-IDF", model_id="TF-IDF")
3 model.match(from_list = ["string_one", "string_two"],
4 to_list = ["string_three", "string_four"])
TypeError: PolyFuzz.__init__() got an unexpected keyword argument 'model_id'
Metadata
Metadata
Assignees
Labels
No labels