-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why Does Matching Fail in These Scenarios? #79
Comments
Hi! I'm having the same problem one the following example. No results are shown.
|
Hi Hagar and Max This library relies on Apache Soundex to give phonetically similar words. In any case, there are other ways to override the default (Soundex) match algorithm used for Name matching, you could instead use N-Gram match. This relies on characters present in the words instead of phonetic matches. You can do that by simply overriding the tokenization function of the Element and use hope this helps |
thanks a lot for your reply of this |
Hello,
I tried to modify some names for matching [Ahmed, Mohamed, Jouliana] by making slight alterations and then attempted to find matches. I anticipated matches like (1,2), (3,4), (3,5), (4,5), and (6,7).
Here's the code snippet I used:
However, I only received the following result when the type is set to
NAME
:And no results were obtained when the type is set to
TEXT
.The text was updated successfully, but these errors were encountered: