Re: Different solr score between stand alone vs cloud mode solr

2018-06-07 Thread Erick Erickson
t;> > Recently we have an observation that really puzzled us. We have two >> > instances of Solr, one in stand alone mode and one is a single-shard >> solr >> > cloud with a couple of replicas. Both are indexed with the same >> documents >> > and ha

Re: Different solr score between stand alone vs cloud mode solr

2018-06-07 Thread Wei
> solr > > cloud with a couple of replicas. Both are indexed with the same > documents > > and have same solr version 6.6.2. When issue the same query, the solr > > score from stand alone and cloud are different. How could this happen? > > With the same data, software

RE: Different solr score between stand alone vs cloud mode solr

2018-06-07 Thread Markus Jelsma
21:19 > To: solr-user > Subject: Re: Different solr score between stand alone vs cloud mode solr > > Short form: > > As docs are updated, they're marked as deleted until the segment is > merged. This affects things like term frequency and doc frequency > which in turn

Re: Different solr score between stand alone vs cloud mode solr

2018-06-07 Thread David Hastings
single-shard > solr > > cloud with a couple of replicas. Both are indexed with the same > documents > > and have same solr version 6.6.2. When issue the same query, the solr > > score from stand alone and cloud are different. How could this happen? > > With t

Re: Different solr score between stand alone vs cloud mode solr

2018-06-07 Thread Erick Erickson
servation that really puzzled us. We have two > instances of Solr, one in stand alone mode and one is a single-shard solr > cloud with a couple of replicas. Both are indexed with the same documents > and have same solr version 6.6.2. When issue the same query, the solr > score from

Different solr score between stand alone vs cloud mode solr

2018-06-07 Thread Wei
score from stand alone and cloud are different. How could this happen? With the same data, software version and query, should solr score be exactly same regardless of cloud mode or not? Thanks, Wei

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
, 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 to use

RE: SOLR Score Range Changed

2018-02-23 Thread Hodder, Rick
Land) Searching for 750 rows has hits that are all focused on Consolidated (seemingly because the number of words causes the SOLR score to go up into a higher range for all Consolidated results, as mentioned in my previous email.) Searching for all 3 things at the same time doesn

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

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

SOLR Score Range Changed

2018-02-22 Thread Hodder, Rick
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 core uses a schema. Here's the schema info for the field that i am searching on: When searching

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
> 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 schrieb "Aman Tandon"

Re: Solr score use cases

2017-12-01 Thread Erick Erickson
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 schrieb &

Re: Solr score use cases

2017-12-01 Thread Faraz Fallahi
e right? > > Am 01.12.2017 16:33 schrieb "Aman Tandon" <amantandon...@gmail.com>: > >> Hi Faraz, >> >> Solr score which you could retrieved by adding in fl parameter could be >> helpful to understand the following: >> >> 1) search relevan

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" <amantandon...@gmail.com>: > Hi Faraz, > > Solr score which you could retrieved by adding

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)

Solr score use cases

2017-12-01 Thread Faraz Fallahi
Hi A simple question: what are the most common use cases for the solr score of documents retrieved after firing queries? I dont have a real understanding of its purpose at the moment. Thx for helping

Re: Modify solr score

2017-04-24 Thread tstusr
g made, maybe it could solves the problem. Thanks for your help! -- View this message in context: http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300p4331614.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Modify solr score

2017-04-22 Thread Erik Hatcher
n some way) the default rank solr provide > us with the ratio of documents so unrelated documents will be penalized > while those with higher ratio values will be overrated. > > Greetings, and thanks for your help. > > > > > -- > View this message in context: &

Re: Modify solr score

2017-04-21 Thread Rick Leir
to a topic are being ranked as high as documents related. So, >in >order to penalize them we are trying to use the ratio or term >frequency/word >length. > >Nevertheless we aren't able to find a practical way to make it. > >Greetings. > > > >-- >View this message

Re: Modify solr score

2017-04-21 Thread tstusr
to find a practical way to make it. Greetings. -- View this message in context: http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300p4331342.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Modify solr score

2017-04-21 Thread Walter Underwood
hat is about faceting, word > selection and so on. > > Greeting > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300p4331331.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Modify solr score

2017-04-21 Thread tstusr
. To establish a threshold of minimums, so that, we are trying to use hit ratio to modify score. After we rank on that topics, all work after that is about faceting, word selection and so on. Greeting -- View this message in context: http://lucene.472066.n3.nabble.com/Modify-solr-score

Re: Modify solr score

2017-04-21 Thread Walter Underwood
lated documents will be penalized > while those with higher ratio values will be overrated. > > Greetings, and thanks for your help. > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300p4331315.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Modify solr score

2017-04-21 Thread tstusr
cuments so unrelated documents will be penalized while those with higher ratio values will be overrated. Greetings, and thanks for your help. -- View this message in context: http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300p4331315.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Modify solr score

2017-04-21 Thread alessandro.benedetti
, Director Sease Ltd. - www.sease.io -- View this message in context: http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300p4331310.html Sent from the Solr - User mailing list archive at Nabble.com.

Modify solr score

2017-04-21 Thread tstusr
in context: http://lucene.472066.n3.nabble.com/Modify-solr-score-tp4331300.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Solr debug 'explain' values differ from the Solr score

2016-03-20 Thread Rick Sullivan
, however. Could this be due to some indexing issue with the DIH? Thanks, -Rick > Date: Tue, 15 Mar 2016 15:40:18 -0700 > From: hossman_luc...@fucit.org > To: solr-user@lucene.apache.org > Subject: RE: Solr debug 'explain' values differ from th

RE: Solr debug 'explain' values differ from the Solr score

2016-03-15 Thread Chris Hostetter
Date: Tue, 15 Mar 2016 13:17:04 -0700 : From: Rick Sullivan <r...@ricksullivan.net> : Reply-To: solr-user@lucene.apache.org : To: "solr-user@lucene.apache.org" <solr-user@lucene.apache.org> : Subject: RE: Solr debug 'explain' values differ from the Solr score : : After so

RE: Solr debug 'explain' values differ from the Solr score

2016-03-15 Thread Rick Sullivan
the problem using SolrCloud 5.5.0, Solr 5.5.0 (not cloud), and Solr 5.4.1. Anyone have any ideas? Thanks, -Rick From: r...@ricksullivan.net To: solr-user@lucene.apache.org Subject: Solr debug 'explain' values differ from the Solr score Date: Thu, 10 Mar 2016 08:34:30 -0800 Hi, I'm seeing behavior

Solr debug 'explain' values differ from the Solr score

2016-03-10 Thread Rick Sullivan
em to agree. However, in the final score I receive, that document's score has been adjusted down. The relevant debug response information can be found here: http://apaste.info/mju Does anyone have an idea why the Solr score may differ from the debug value? Thanks,-Rick

Re: solr score threashold

2016-01-20 Thread Walter Underwood
immagine when i searching i get this result >> doc1 score =8 >> doc2 score =6.4 >> doc3 score=6 >> doc8score=5.5 >> doc5 score=2 >> i wana to change solr score threashold .in this way i set threashold for >> example >4 >> and then i didn't get doc5 as

Re: solr score threashold

2016-01-20 Thread Doug Turnbull
doc1 score =8 > doc2 score =6.4 > doc3 score=6 > doc8score=5.5 > doc5 score=2 > i wana to change solr score threashold .in this way i set threashold for > example >4 > and then i didn't get doc5 as result.can i do this?if yes how? > and if not how i can modified search

solr score threashold

2016-01-20 Thread sara hajili
hi all, i wanna to know about solr search relevency scoreing threashold. can i change it? i mean immagine when i searching i get this result doc1 score =8 doc2 score =6.4 doc3 score=6 doc8score=5.5 doc5 score=2 i wana to change solr score threashold .in this way i set threashold for example &g

Re: solr score threashold

2016-01-20 Thread Emir Arnautovic
score =6.4 doc3 score=6 doc8score=5.5 doc5 score=2 i wana to change solr score threashold .in this way i set threashold for example >4 and then i didn't get doc5 as result.can i do this?if yes how? and if not how i can modified search to don't get docs as a result that these docs have a lot dista

Solr score distribution usage

2015-09-08 Thread Ashish Mukherjee
Hello, I would like to use the Solr score distribution to pick up most relevant documents from the search result. Rather than top n results, I am interested only in picking up the most relevant based on statistical distribution of the scores. A brief study of some sample searches (the most

Re: Include Solr score into a ranking algorithm

2014-11-20 Thread Mikhail Khludnev
Hello Nicholas! you can specify a function query as a main query where you can operate with DVs, then you can use regular tfidf score from arbitrary query as one of the arguments in the functional query see an example in http://wiki.apache.org/solr/FunctionQuery#query have a good research! On

Re: Include Solr score into a ranking algorithm

2014-11-20 Thread Nicholas Ding
Hi Mikhail, Thank you very much! I'm using eDisMax by default, I think I will need to change it to defType=func and pass all the query parameters (fq mainly) to the sub query right? Nicholas Ding On Thu, Nov 20, 2014 at 5:22 AM, Mikhail Khludnev mkhlud...@griddynamics.com wrote: Hello

Re: Include Solr score into a ranking algorithm

2014-11-20 Thread Ahmet Arslan
Hi Nicholas, you can use sort by function feature of solr. sort=sum( mul(query(field:TfIdfQuery),x1), mul(x1,v2)) On Thursday, November 20, 2014 4:23 PM, Nicholas Ding nicholas...@gmail.com wrote: Hi Mikhail, Thank you very much! I'm using eDisMax by default, I think I will need to change

Re: Include Solr score into a ranking algorithm

2014-11-20 Thread Mikhail Khludnev
On Thu, Nov 20, 2014 at 5:23 PM, Nicholas Ding nicholas...@gmail.com wrote: Hi Mikhail, Thank you very much! I'm using eDisMax by default, I think I will need to change it to defType=func and I wonder why do you ask, because the given link has three examples of including edismax into the

Re: Include Solr score into a ranking algorithm

2014-11-20 Thread Nicholas Ding
Thank you so much, Mikhail! It works perfectly. On Thu, Nov 20, 2014 at 12:54 PM, Mikhail Khludnev mkhlud...@griddynamics.com wrote: On Thu, Nov 20, 2014 at 5:23 PM, Nicholas Ding nicholas...@gmail.com wrote: Hi Mikhail, Thank you very much! I'm using eDisMax by default, I think I will

Include Solr score into a ranking algorithm

2014-11-19 Thread Nicholas Ding
Hi, Currently, I'm trying to implement a ranking algorithm on Solr to include TFIDFSimilarity score into a formula. Ranking = TFIDFSimilarity Score * X1 + V1 * X2 + V2 * X3 + . + Vn-1 * Xn Basically, the values of Vn are stored in DocValues, I can access them in customized Function Query.

Solr score manager

2014-07-16 Thread Shay Sofer
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 object - 100 2. Edited - 80 3. Recent search - 50 4. Opened - 40 and some more actions... And then when execute a

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 sha...@checkpoint.com 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

Fwd: Solr score manager

2014-07-16 Thread Alexandre Rafalovitch
: Alexandre Rafalovitch [mailto:arafa...@gmail.com] Sent: Wednesday, July 16, 2014 1:53 PM To: solr-user Subject: Re: Solr score manager How are you storing this information in your documents? Regards, Alex On 16/07/2014 5:03 pm, Shay Sofer sha...@checkpoint.com wrote: Hi All, I need a specific

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

Re: Combining Solr score with customized user ratings for a document

2014-05-26 Thread rulinma
Good. -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4138135.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Rounding errors with SOLR score

2014-03-22 Thread William Bell
I will send the debugQuery. They are exactly the same. On Fri, Mar 21, 2014 at 2:59 AM, Raymond Wiker rwi...@gmail.com wrote: Are you sure that SOLR is rounding incorrectly, and not simply differently from what you expect? I was surprised myself at some of the rounding behaviour I saw with

Re: Rounding errors with SOLR score

2014-03-21 Thread Raymond Wiker
Are you sure that SOLR is rounding incorrectly, and not simply differently from what you expect? I was surprised myself at some of the rounding behaviour I saw with SOLR, but according to http://en.wikipedia.org/wiki/Rounding , the results were valid (just not the round-up-from-half that I naively

Rounding errors with SOLR score

2014-03-20 Thread William Bell
When doing complex boosting/bq we are getting rounding errors on the score. To get the score to be consistent I needed to use rint on sort: sort=rint(product(sum($p_score,$s_score,$q_score),100)) desc,s_query asc str name=p_scorerecip(priority,1,.5,.01)/str str

Re: How to round solr score ?

2013-10-08 Thread Mamta Thakur
Thanks for your replies. I am actually doing the frange approach for now. The only downside I see there is it makes the function call twice, calling createWeight() twice. And so my social connections are evaluated twice which is quite heavy operation. So I was thinking if I could get away with

Re: How to round solr score ?

2013-09-17 Thread Mamta Thakur
Hi , As per this post here http://grokbase.com/t/lucene/solr-user/131jzcg3q2/how-to-round-solr-score. I was able to use my custom fn in sort(defType=funcq=socialDegree(id,1)fl=score,*sort=score%20asc) - works, but can't facet on the same(defType=funcq=socialDegree(id,1)fl=score,*facet

Re: How to round solr score ?

2013-09-17 Thread Chris Hostetter
: 'score' is a pseudo-field, i.e., it does not actually exist in : the index, which is probably why it cannot be faceted on. : Faceting on a rounded score seems like an unusual use : case. What requirement are you trying to address? agreed, more details would be helpful. FWIW: the only way

Re: How to round solr score ?

2013-09-17 Thread Gora Mohanty
On 17 September 2013 18:31, Mamta Thakur mtha...@care.com wrote: Hi , As per this post here http://grokbase.com/t/lucene/solr-user/131jzcg3q2/how-to-round-solr-score. I was able to use my custom fn in sort(defType=funcq=socialDegree(id,1)fl=score,*sort=score%20asc) - works, but can't facet

Re: Combining Solr score with customized user ratings for a document

2013-09-10 Thread Amit Jha
do you think? A big THANKS in advance Álvaro -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Combining Solr score with customized user ratings for a document

2013-02-21 Thread Chris Hostetter
: With this approach now I can boost (i.e. multiply Solr's score by a factor) : the results of any query by doing something like this: : http://localhost:8080/solr/Prueba/select_test?q={!boost : b=rating(usuario1)}text:grapafl=score : : Where 'rating' is the name of my function. : :

Re: Combining Solr score with customized user ratings for a document

2013-02-19 Thread Á_____o
the map in the ValueSource. Then my floatVal method would just be a 'get' from my map. I'm so close! Thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4041272.html Sent from the Solr - User mailing

Re: Combining Solr score with customized user ratings for a document

2013-02-15 Thread Á_____o
Thanks A LOT! Regards, Álvaro -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4040597.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Combining Solr score with customized user ratings for a document

2013-02-15 Thread Á_____o
see how could it be user-customized... :( -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4040616.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Combining Solr score with customized user ratings for a document

2013-02-15 Thread Timothy Potter
does not have to be necessarily the docID. It can be some other field. Anyway, even in that case, it's still a 'docKey' which I can't see how could it be user-customized... :( -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings

Re: Combining Solr score with customized user ratings for a document

2013-02-15 Thread Chris Hostetter
: http://www.slideshare.net/thelabdude/boosting-documents-in-solr-lucene-revolution-2011 ... : Start by looking at Solr's external file field and Rather then using ExternalFileField as imspiration, i would suggest you look at implementing a custom ValueSourceParser...

Re: Combining Solr score with customized user ratings for a document

2013-02-14 Thread Á_____o
+ a FunctionQuery is a solution to my problem... Any hint? Thanks! Álvaro -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4040444.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Combining Solr score with customized user ratings for a document

2013-02-14 Thread Timothy Potter
in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4040444.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Combining Solr score with customized user ratings for a document

2013-02-14 Thread Timothy Potter
is a solution to my problem... Any hint? Thanks! Álvaro -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200p4040444.html Sent from the Solr - User mailing list archive at Nabble.com.

Combining Solr score with customized user ratings for a document

2013-02-13 Thread Á_____o
combined score. What do you think? A big THANKS in advance Álvaro -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-Solr-score-with-customized-user-ratings-for-a-document-tp4040200.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to round solr score ?

2013-01-18 Thread Gora Mohanty
On 18 January 2013 18:26, Gustav xbihy...@sharklasers.com wrote: I have to bump this... is it possible to do it (round solr's score) with any integrated query function?? Do not have a Solr index handy at the moment to check, but it should be possible to do this with function queries. Please see

Re: How to round solr score ?

2013-01-18 Thread Gustav
://lucene.472066.n3.nabble.com/How-to-round-solr-score-tp495198p4034551.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to round solr score ?

2013-01-18 Thread Gora Mohanty
On 18 January 2013 19:18, Gustav xbihy...@sharklasers.com wrote: Hey Gora, thanks for the fast answer! I Had tried the rint(score) function before(it would be perfect in my case) but it didnt work out, i guess it only works with indexed fields, so i got the sort param could not be parsed as

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
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-reasonably-independent-of-results-returned

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 score0.25*last_score then stop Since score0 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-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

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

2012-08-22 Thread Mou
use this. If I always have that x% threshold in place , there may be many queries which would not return anything and I certainly do not want that. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Score-threshold-reasonably-independent-of-results-returned

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

2012-08-22 Thread Ravish Bhagdev
.472066.n3.nabble.com/Solr-Score-threshold-reasonably-independent-of-results-returned-tp4002312p4002673.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr Score threshold 'reasonably', independent of results returned

2012-08-20 Thread Ramzi Alqrainy
-21_at_5.30.38_AM.png https://issues.apache.org/jira/browse/SOLR-3747 -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Score-threshold-reasonably-independent-of-results-returned-tp4002312.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Customizing Solr score with DixMax query

2012-02-27 Thread Ahmet Arslan
--- On Mon, 2/27/12, Xiao shinelee.thew...@gmail.com wrote: From: Xiao shinelee.thew...@gmail.com Subject: Customizing Solr score with DixMax query To: solr-user@lucene.apache.org Date: Monday, February 27, 2012, 5:59 AM In my application logic, I want to implement the ranking (scoring

Re: Customizing Solr score with DixMax query

2012-02-27 Thread Xiao
://lucene.472066.n3.nabble.com/Customizing-Solr-score-with-DixMax-query-tp3779591p3781200.html Sent from the Solr - User mailing list archive at Nabble.com.

Customizing Solr score with DixMax query

2012-02-26 Thread Xiao
, Solr does return a score which is a production of two scores. However, by using boosted query, I lost the power of dismax query which can search across multiple fields. -- View this message in context: http://lucene.472066.n3.nabble.com/Customizing-Solr-score-with-DixMax-query-tp3779591p3779591

Re: Solr Score Normalization

2011-11-16 Thread Jan Høydahl
0 to NOT_A_FIXED_NUMBER 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? Thanks Sid -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Score

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 edismax

Solr Score Normalization

2011-11-04 Thread sangrish
to NOT_A_FIXED_NUMBER 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? Thanks Sid -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Score-Normalization-tp3481627p3481627.html Sent from

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

solr score issue

2011-02-25 Thread Bagesh Sharma
(body:softwar engin in 339), product of: 1.0 = tf(phraseFreq=1.0) 5.3680387 = idf(body: softwar=34 engin=223) 0.109375 = fieldNorm(field=body, doc=339) /str please suggest me. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-score-issue-tp2574680p2574680.html

Re: solr score issue

2011-02-25 Thread Jayendra Patil
= fieldWeight(body:softwar engin in 339), product of:      1.0 = tf(phraseFreq=1.0)      5.3680387 = idf(body: softwar=34 engin=223)      0.109375 = fieldNorm(field=body, doc=339) /str please suggest me. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-score-issue

How to round solr score ?

2009-03-30 Thread squaro
Hello, I would like to cut solr score to 3 or 4 digits . Indeed I would like to be able to sort by score, then by another critria ( price for example). So if two docs have score of 1.67989 and 1.6767, I would like to sort them by price. Do you have any idea how I could do that ? -- View

Re: How to round solr score ?

2009-03-30 Thread Shalin Shekhar Mangar
On Mon, Mar 30, 2009 at 10:04 PM, squaro marclebe...@gmail.com wrote: Hello, I would like to cut solr score to 3 or 4 digits . Indeed I would like to be able to sort by score, then by another critria ( price for example). So if two docs have score of 1.67989 and 1.6767, I would like

Re: How to round solr score ?

2009-03-30 Thread Grant Ingersoll
On Mar 30, 2009, at 1:07 PM, Shalin Shekhar Mangar wrote: On Mon, Mar 30, 2009 at 10:04 PM, squaro marclebe...@gmail.com wrote: Hello, I would like to cut solr score to 3 or 4 digits . Indeed I would like to be able to sort by score, then by another critria ( price for example). So

Re: How to round solr score ?

2009-03-30 Thread Walter Underwood
, squaro marclebe...@gmail.com wrote: Hello, I would like to cut solr score to 3 or 4 digits . Indeed I would like to be able to sort by score, then by another critria ( price for example). So if two docs have score of 1.67989 and 1.6767, I would like to sort them by price. Do you have

Re: How to round solr score ?

2009-03-30 Thread Shalin Shekhar Mangar
On Mon, Mar 30, 2009 at 10:54 PM, Grant Ingersoll gsing...@apache.orgwrote: I don't there there is an existing way to round them. But it will be a useful contribution if you can write a function query for rounding. Look at http://wiki.apache.org/solr/FunctionQuery What did you have in

Re: How to round solr score ?

2009-03-30 Thread Shalin Shekhar Mangar
On Mon, Mar 30, 2009 at 11:06 PM, Walter Underwood wunderw...@netflix.comwrote: I think what you want to do is add in a function query that gives values in that range. The scale function won't work in this use-case because it will give you a double in the given range. So you cannot do sort by

Re: How to round solr score ?

2009-03-30 Thread Shalin Shekhar Mangar
On Mon, Mar 30, 2009 at 11:07 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: Yonik added a way to use the score of a query in function queries with SOLR-939. Look at the query function on the wiki. Some very cool things are possible now :) Sorry, that should have been SOLR-1046

Re: How to round solr score ?

2009-03-30 Thread Shalin Shekhar Mangar
On Mon, Mar 30, 2009 at 11:10 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: On Mon, Mar 30, 2009 at 11:06 PM, Walter Underwood wunderw...@netflix.com wrote: I think what you want to do is add in a function query that gives values in that range. The scale function won't work in

Re: solr score

2008-09-24 Thread Neeti Raj
? Anybody knows about it? Please help me. with Regards, Santhanaraj R -- View this message in context: http://www.nabble.com/solr-score-tp19642046p19642046.html Sent from the Solr - User mailing list archive at Nabble.com.

solr score

2008-09-23 Thread sanraj25
about it? Please help me. with Regards, Santhanaraj R -- View this message in context: http://www.nabble.com/solr-score-tp19642046p19642046.html Sent from the Solr - User mailing list archive at Nabble.com.

A question about solr score

2007-10-26 Thread zx zhang
Hi, everyone! As we known, solr uses lucene scoring. This score is the raw score. Scores returned from Hits aren't necessarily the raw score, however. If the top-scoring document scores greater than 1.0, all scores are normalized from that score, such that all scores from Hits are uaranteed to be

Re: A question about solr score

2007-10-26 Thread Erik Hatcher
Solr returns the raw score, not the Lucene Hits normalized one. It's trivial for the client to normalize if desired - take the top scoring document, if it's greater than 1.0 then scale all scores based on that. Erik On Oct 26, 2007, at 2:53 AM, zx zhang wrote: Hi, everyone! As

Re: A question about solr score

2007-10-26 Thread Chris Hostetter
: It's trivial for the client to normalize if desired - take the top scoring : document, if it's greater than 1.0 then scale all scores based on that. this is why doclists include the maxScore in their output as well, to make it easy to normalize scores even if you are using pagination (or