Re: Scoring changes between 4.10 and 5.5

2016-06-10 Thread Upayavira
Tracked it down to this ticket: https://issues.apache.org/jira/browse/LUCENE-6590 which changed the implementation of normalize() in org.apache.lucene.search.similarities.TFIDFSimilarity. I've asked for comment on that ticket. Upayavira On Fri, 10 Jun 2016, at 01:39 AM, Ahmet Arslan wrote: > H

Re: Scoring changes between 4.10 and 5.5

2016-06-09 Thread Ahmet Arslan
Hi, I wondered the same before and failed to decipher TFIDFSimilarity. Scoring looks like tf*idf*idf to me. I appreciate someone who will shed some light on this. Thanks, Ahmet On Friday, June 10, 2016 12:37 AM, Upayavira wrote: I've just done a very simple, single term query against a 4.10

Scoring changes between 4.10 and 5.5

2016-06-09 Thread Upayavira
I've just done a very simple, single term query against a 4.10 system and a 5.5 system, each with much the same data. The score for the 4.10 system was essentially made up of the field weight, which is: score = tf * idf Whereas, in the 5.5 system, there is an additional "query weight", which