Re: SOLR Score Range Changed

2018-02-26 Thread Shawn Heisey
On 2/23/2018 2:28 PM, Hodder, Rick wrote: > Combining everything into one query is what I'd prefer because as you said, > one would think that with everything in the same query, the score would > organize everything nicely. I don't recall writing anything like that.  How did you infer that from

RE: SOLR Score Range Changed

2018-02-23 Thread Hodder, Rick
riday, February 23, 2018 10:41 AM To: solr-user@lucene.apache.org Subject: Re: SOLR Score Range Changed The difference seems due to the fact that default similarity in solr 7 is BM25 while it used to be TF-IDF in solr 4. As you realised, BM25 function is smoother. You can configure schema.xml t

RE: SOLR Score Range Changed

2018-02-23 Thread Hodder, Rick
Hi Shawn, Thanks for your help - I'm still finding my way in the weeds of SOLR. Combining everything into one query is what I'd prefer because as you said, one would think that with everything in the same query, the score would organize everything nicely. >>Assuming you're using the default re

Re: SOLR Score Range Changed

2018-02-23 Thread Joël Trigalo
The difference seems due to the fact that default similarity in solr 7 is BM25 while it used to be TF-IDF in solr 4. As you realised, BM25 function is smoother. You can configure schema.xml to use ClassicSimilarity, for instance https://lucene.apache.org/solr/guide/6_6/major-changes-from-solr-5-to-

Re: SOLR Score Range Changed

2018-02-22 Thread Shawn Heisey
On 2/22/2018 9:50 AM, Hodder, Rick wrote: I am migrating from SOLR 4.10.2 to SOLR 7.1. All seems to be going well, except for one thing: the score that is coming back for the resulting documents is giving different scores. The absolute score has no meaning when you change something -- the in

Re: Solr score use cases

2017-12-04 Thread alessandro.benedetti
I would like to stress how important is what Erick explained. A lot of times people want to use the score to show it to the users/calculate probability/doing weird calculations. Score is used to rank results, given a query. To give a local ordering. This is the only useful information for the end

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
Thx for the clarification Best regards Am 01.12.2017 18:25 schrieb "Erick Erickson" : > Sorting certainly ignores scoring, I'm pretty sure it's just not > calculated in that case. > > If your sorting results in multiple documents in the same bin, people > will combine the primary sort with a seco

Re: Solr score use cases

2017-12-01 Thread Erick Erickson
Sorting certainly ignores scoring, I'm pretty sure it's just not calculated in that case. If your sorting results in multiple documents in the same bin, people will combine the primary sort with a secondary sort on score, so in that case the score is definitely calculated, ie "&sort=day asc, score

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
Or does the Score even get calculated when i sort or Not? Am 01.12.2017 4:38 nachm. schrieb "Faraz Fallahi" < faraz.fall...@googlemail.com>: > Oki but If ID Just make an simple query with a "where Claude" and sort by > a field i See no sense in calculating a score right? > > Am 01.12.2017 16:33 s

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
Oki but If ID Just make an simple query with a "where Claude" and sort by a field i See no sense in calculating a score right? Am 01.12.2017 16:33 schrieb "Aman Tandon" : > Hi Faraz, > > Solr score which you could retrieved by adding in fl parameter could be > helpful to understand the following:

Re: Solr score use cases

2017-12-01 Thread Aman Tandon
Hi Faraz, Solr score which you could retrieved by adding in fl parameter could be helpful to understand the following: 1) search relevance ranking: how much score solr has given to the top & second top document, and with debug=true you could better understand what is causing that score. 2) You c

Re: solr score threashold

2016-01-20 Thread Doug Turnbull
What problem are you trying to solve? If you're trying to cut out "bad" results, I might suggest explicitly using filters that eliminate undesirable search items in terms that are meaningful to how your users evaluate relevance. For example, let's say your users only want items that have at least

Re: solr score threashold

2016-01-20 Thread Walter Underwood
The ScoresAsPercentages page is not really instructions for how to normalize scores. It is an explanation of why a score threshold does not do what you want. Don’t use thresholds. If you want thresholds, you will need a search engine with a probabilistic model, like Verity K2. Those generally gi

Re: solr score threashold

2016-01-20 Thread Emir Arnautovic
Hi Sara, You can use funct and frange to achive needed, but note that scores are not normalized meaning score 8 does not mean it is good match - it is just best match. There are examples online how to normalize score (e.g. http://wiki.apache.org/lucene-java/ScoresAsPercentages). Other approach

RE: Solr score manager

2014-07-16 Thread Doug Turnbull
Shay this presentation I gave at apachecon and dc solr exchange might be useful to you: http://www.slideshare.net/mobile/o19s/hacking-lucene-for-custom-search-results Sent from my Windows Phone From: Shay Sofer Sent: ‎7/‎16/‎2014 6:03 AM To: solr-user@lucene.apache.org Subject: Solr score manager

Re: Solr score manager

2014-07-16 Thread Alexandre Rafalovitch
How are you storing this information in your documents? Regards, Alex On 16/07/2014 5:03 pm, "Shay Sofer" wrote: > Hi All, > > I need a specific score mechanism. > > I would like to sort my results based on customize scoring field. > scoring for example - > > > > 1. If this is a new ob

Re: Solr Score threshold 'reasonably', independent of results returned

2012-08-28 Thread Chris Hostetter
: Not really. The percentage given in other search packages is fairly : bogus. You have to do a global batch analysis of all of the index to : get a true scale for relevance. Exactly... https://wiki.apache.org/solr/FAQ#Why_Aren.27t_Scores_returned_as_a_percentage.3F_How_Do_I_normalize_Scores.3F

Re: Solr Score threshold 'reasonably', independent of results returned

2012-08-26 Thread Lance Norskog
Not really. The percentage given in other search packages is fairly bogus. You have to do a global batch analysis of all of the index to get a true scale for relevance. On Sat, Aug 25, 2012 at 1:38 PM, Ramzi Alqrainy wrote: > You are right Mr.Ravish, because this depends on (ranking and search fi

Re: Solr Score threshold 'reasonably', independent of results returned

2012-08-25 Thread Ramzi Alqrainy
You are right Mr.Ravish, because this depends on (ranking and search fields) formula, but please allow me to tell you that Solr score can help us to define this document is relevant or not in some cases. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Score-threshold-r

Re: Solr Score threshold 'reasonably', independent of results returned

2012-08-25 Thread Ramzi Alqrainy
It will never return no result because its relative to score in previous result If score<0.25*last_score then stop Since score>0 and last score is 0 for initial hit it will not stop -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Score-threshold-reasonably-independent

Re: Solr Score threshold 'reasonably', independent of results returned

2012-08-22 Thread Ravish Bhagdev
Commercial solutions often have %age that is meant to signify the quality of match. Solr has relative score and you cannot tell by just looking at this value if a result is relevant enough to be in first page or not. Score depends on "what else is in the index" so not easy to normalize in the way

Re: Solr Score threshold 'reasonably', independent of results returned

2012-08-22 Thread Mou
Hi, I think that this totally depends on your requirements and thus applicable for a user scenario. Score does not have any absolute meaning, it is always relative to the query. If you want to watch some particular queries and want to show results with score above previously set threshold, you can

Re: Solr Score Normalization

2011-11-16 Thread Chris Hostetter
: Perhaps you can solve your usecase by playing with the new eDismax : "boost" parameter, which multiplies the functions with the other score : instead of adding. and FWIW: the "boost" param of the edismax parser is really just syntactic sugar for using the "BoostQParsre wrapped arround an edi

Re: Solr Score Normalization

2011-11-16 Thread Jan Høydahl
Perhaps you can solve your usecase by playing with the new eDismax "boost" parameter, which multiplies the functions with the other score instead of adding. -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com Solr Training - www.solrtraining.com On 5. nov. 2011, at 01:26,

Re: Solr Score Normalization

2011-11-04 Thread Chris Hostetter
:To allow better combination of text match & my functions, I want the text : score to be normalized between 0 & 1. Is there any way I can achieve that : here? It is achievable, but it is not usualy meaningful... https://wiki.apache.org/lucene-java/ScoresAsPercentages -Hoss

Re: solr score issue

2011-02-25 Thread Jayendra Patil
Check the "Need help in understanding output of searcher.explain() function" thread. http://mail-archives.apache.org/mod_mbox/lucene-java-user/201008.mbox/%3CAANLkTi=m9a1guhrahpeyqaxhu9gta9fjbnr7-8-zi...@mail.gmail.com%3E Regards, Jayendra On Fri, Feb 25, 2011 at 6:57 AM, Bagesh Sharma wrote: >

Re: solr score

2008-09-24 Thread Neeti Raj
Hi Santhanaraj Just search for boost on Solr wiki and see if boost feature suffices your requirement. As for highlighting, this explains how to implement solr highlighting http://wiki.apache.org/solr/HighlightingParameters - neeti On Wed, Sep 24, 2008 at 10:31 AM, sanraj25 <[EMAIL PROTECTED]> wr