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
{"title":"This is a test for search similarity when we search by other search options."}
{"title”:”Search looks weird when use other search possibilities. Numbers are not clear. Just adding new stuff to make the document longer. Document norm looks weird."}
If you look at the returned scores, there are multiple weird numbers:
The score for all documents is zero
The collection probability, a term property that is independent from individual documents, is different for each document. I expect this number to be the same for all documents for a given term.
Document norm has a negative value, probably it's the log of another number, but I can't match these numbers to the LM formula.
The text was updated successfully, but these errors were encountered:
When I use the LMDirichlet similarity I get back are all zero scores. Here is the steps to reproduce the problem:
{ "settings": { "similarity": { "LMSimilarity": { "type": "LMDirichlet", "mu": 2500 } } }, "mappings": { "item": { "properties": { "title": { "type": "string", "similarity": "LMSimilarity" } } } } }
{"title":"This is a test for search similarity when we search by other search options."}
{"title”:”Search looks weird when use other search possibilities. Numbers are not clear. Just adding new stuff to make the document longer. Document norm looks weird."}
{ "explain": "true", "query": { "match": { "title": "search" } } }
If you look at the returned scores, there are multiple weird numbers:
The text was updated successfully, but these errors were encountered: