how can i get similarity score between query and each of retrieved documents in Solr? further more how can I set Solr retrieval method. for example chose between Vector Space model or Document Language Model. Is It possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
As you mentioned in your own answer, you can specify Solr you want to retrieve the score of every document using First of all, Lucene/Solr, only provides TF-IDF (VSM based) scoring strategy. If you decided to plug-in third party Similarity implementations, you can change the scoring strategy used by Solr, but you can't change it in query basis. In fact, you need to reload the core to change it. |
|||
|
|
|
as mentioned here http://stackoverflow.com/a/9262300/1593370
you can add score field to the result by adding but I still cant find a way to chose the retrieval method. |
|||
|
|
