Hi
I am using the Text matching using Poly fuzz
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 :- {'TF-IDF': From To Similarity
0 CIPLAR LA 40 TABLET CIPLAR LA 80 TABLET 1.0}
The matching is coming CIPLAR LA 80 TABLET but it should be CIPLAR LA 40 TABLET
It is not considering numeric, Do we have any option to not ignore numeric
Hi
I am using the Text matching using Poly fuzz
The matching is coming CIPLAR LA 80 TABLET but it should be CIPLAR LA 40 TABLET
It is not considering numeric, Do we have any option to not ignore numeric