You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"My Search String" and there is a perfect match in the corpus provided, I am getting return no results.
However, with a single space "My Search String " I'm able to get results, though the top result is similar to but not the exact match. I'm going to dive into this further, note that the actual string in question is 10 characters long, and I have not been able to create a reduced example.
Elements from actual corpus of products that are being searched look like:
My Search String
My Search Attribute1 String
My Search Attribute2 String
My Search Attribute3 String
Again when searching for "My Search String " I'm returned "My Search Attribute 1 String" as my top result.
Also, again, I tried building a reduced example of this behaviour along these contrived lines but failed to do so, so it'll merit additional investigation.
Though perhaps you can suggest ways I can debug?
The text was updated successfully, but these errors were encountered:
Ahh, yes, I suspected it might be because it is such a common phrase it gets removed as useless, but that tends to not model a master X and variants of X well.
Let me see if I can tune that parameter. I wonder how other implementations accomplish this as well.
Yeah, it's kind of like "stop words" in other implementations except that there's no hard-coded list of stop words. Instead, the lowest 1/16th of the tokens are not used for finding the initial candidate documents.
very simply, when I am searching for:
"My Search String" and there is a perfect match in the corpus provided, I am getting return no results.
However, with a single space "My Search String " I'm able to get results, though the top result is similar to but not the exact match. I'm going to dive into this further, note that the actual string in question is 10 characters long, and I have not been able to create a reduced example.
Elements from actual corpus of products that are being searched look like:
My Search String
My Search Attribute1 String
My Search Attribute2 String
My Search Attribute3 String
Again when searching for "My Search String " I'm returned "My Search Attribute 1 String" as my top result.
Also, again, I tried building a reduced example of this behaviour along these contrived lines but failed to do so, so it'll merit additional investigation.
Though perhaps you can suggest ways I can debug?
The text was updated successfully, but these errors were encountered: