PolyFuzz icon indicating copy to clipboard operation
PolyFuzz copied to clipboard

Numeric-String Text Matching

Open ganesh-morsu opened this issue 10 months ago • 1 comments

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

ganesh-morsu avatar Aug 22 '23 16:08 ganesh-morsu