Reputation: 31
I am having trouble with Fuzzy Queries giving higher relevance to Fuzzy Hit terms than Direct Match on Python Whoosh. Is there any existing options available within the library to score direct matches higher? or I have to separately code it (i.e.do both Direct Query and Fuzzy Query and rank the text one higher...)? Thanks for the advice.
Upvotes: 0
Views: 538
Reputation: 31
To answer my own question, I found a crude solution via stacking of queries:
However, the scores still remain unchanged.
Upvotes: 1