Re: Can I discover what part of a score is attributable to a subquery?

2012-04-14 Thread Paul Libbrecht
Benson, In mid 2009, I has such a question answered with a nifty score bitwise manipulation, and a little precision loss. For each result I could pick the language of a multilingual match. If interested, I can dig. Paul -- Envoyé de mon téléphone Android avec K-9 Mail. Excusez la brièveté.

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-14 Thread Benson Margulies
yes please On Apr 14, 2012, at 2:40 AM, Paul Libbrecht p...@hoplahup.net wrote: Benson, In mid 2009, I has such a question answered with a nifty score bitwise manipulation, and a little precision loss. For each result I could pick the language of a multilingual match. If interested, I can

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-14 Thread Paul Libbrecht
Benson, it was in the Lucene world in May 2010: http://mail-archives.apache.org/mod_mbox/lucene-java-user/201005.mbox/%3c469705.48901...@web29016.mail.ird.yahoo.com%3E Mark Harwood pointed me to a FlagQuery which was exactly what I needed. His contribution sounds not to have been taken

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-14 Thread Benson Margulies
On Sat, Apr 14, 2012 at 12:37 PM, Paul Libbrecht p...@hoplahup.net wrote: Benson, it was in the Lucene world in May 2010:         http://mail-archives.apache.org/mod_mbox/lucene-java-user/201005.mbox/%3c469705.48901...@web29016.mail.ird.yahoo.com%3E Mark Harwood pointed me to a FlagQuery

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-14 Thread Paul Libbrecht
Benson, If I remember well, the big big problem is that there's all sorts of recalibration of the scores based on the query. Therefore having it in one go is really nice. I am not sure the different similarity can be put together well here though... paul Le 14 avr. 2012 à 18:58, Benson

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-13 Thread John Chee
On Fri, Apr 13, 2012 at 2:40 PM, Benson Margulies bimargul...@gmail.com wrote: Given a query including a subquery, is there any way for me to learn that subquery's contribution to the overall document score? I can provide 'why on earth would anyone ...' if someone wants to know. Have you

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-13 Thread Benson Margulies
On Fri, Apr 13, 2012 at 6:43 PM, John Chee johnc...@mylife.com wrote: On Fri, Apr 13, 2012 at 2:40 PM, Benson Margulies bimargul...@gmail.com wrote: Given a query including a subquery, is there any way for me to learn that subquery's contribution to the overall document score? I need this

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-13 Thread Chris Hostetter
: Given a query including a subquery, is there any way for me to learn : that subquery's contribution to the overall document score? You have to just execute the subquery itself ... doc collection and score calculation doesn't keep track the subscores. you could do this using functions in the

Re: Can I discover what part of a score is attributable to a subquery?

2012-04-13 Thread Benson Margulies
On Fri, Apr 13, 2012 at 7:07 PM, Chris Hostetter hossman_luc...@fucit.org wrote: : Given a query including a subquery, is there any way for me to learn : that subquery's contribution to the overall document score? You have to just execute the subquery itself ... doc collection and score