| clear query|facets|time |
Search criteria: relevant computing.
Results from 21 to 30 from
486 (0.457s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: relevance vs. score - Lucene - [mail # user]
|
|
... I think for "ordinary" Lucene queries, "score" and "relevance" mean the same thing. But if you do eg function queries, or you "mixin" recency into your scoring, etc., then "score...
|
|
..." could be anything you computed, a value from a field, etc. Mike wrote: ...
|
|
|
Author: Michael McCandless,
2009-03-04, 12:30
|
|
|
Re: Relevancy Practices - Lucene - [mail # user]
|
|
...-of-the-box. Some of them could be improved with external NLP-tools. My biggest problem with relevancy is, that I can't work with metadata computed on the fly or every hour out of the box (okay, you...
|
|
..., that Solr does not know that the most important word in this query is "Obama". It is only a shortcut of some ideas on how one can improve the relevancy with several features that Solr offers out...
|
[+ show more]
[- hide]
| ... presentation. Kind regards - Mitch View this message in context: http://lucene.472066.n3.nabble.com/Relevancy-Practices-tp765363p768902.html Sent from the Lucene - Java Users mailing list archive... |
|
|
Author: MitchK,
2010-04-30, 21:16
|
|
|
Re: Relevancy Practices - Solr - [mail # user]
|
|
...-of-the-box. Some of them could be improved with external NLP-tools. My biggest problem with relevancy is, that I can't work with metadata computed on the fly or every hour out of the box (okay, you...
|
|
..., that Solr does not know that the most important word in this query is "Obama". It is only a shortcut of some ideas on how one can improve the relevancy with several features that Solr offers out...
|
[+ show more]
[- hide]
| ... regards - Mitch View this message in context: http://lucene.472066.n3.nabble.com/Relevancy-Practices-tp765364p766456.html Sent from the Solr - User mailing list archive at Nabble.com. ... |
|
|
Author: MitchK,
2010-04-29, 21:13
|
|
|
Re: Open Source Relevance - Lucene - [mail # dev]
|
|
... way that we could get computing resources to run the evaluations. No guarantees on that (I'm sure a Sun Lawyer's ears are burning somewhere right now, just for me having said that...
|
|
|
Author: Stephen Green,
2008-05-21, 12:26
|
|
|
Vector Model and Relevance Feedback - Lucene - [mail # user]
|
|
...I've some thoughts about Lucene and Relevance Feedback. I want to implement some variation of the Roccio Formula and there is the problem. The formula is like this: Query(new) = alpha...
|
|
... * Query(old) + beta * Sum(Relevant Documents) - gamma * Sum(Non Relevant Documents) The relevant documents in this formula should be in a vector representation. This is the problem If I work...
|
[+ show more]
[- hide]
| ... then the computation. So my questions are: Is this the only way to do so? ( I hope so not) Is there an add on for lucene to get a real vector representation? Does anyone has experiences with this issue? Thanks... |
|
|
Author: Stefan Gusenbauer,
2005-11-02, 14:10
|
|
|
RE: Relevance percentage - Lucene - [mail # user]
|
|
...Query.BooleanWeight.explain(), which has the code to recompute coord on a result (specifically it computes overlap and maxoverlap and then calls Similarity.coord()). You could cut and paste this code to just compute coord...
|
|
...:[EMAIL PROTECTED]] > Sent: Wednesday, December 22, 2004 11:59 PM > To: [EMAIL PROTECTED] > Subject: Re: Relevance percentage > > On Thursday 23 December 2004 08:13, Gururaja H...
|
[+ show more]
[- hide]
| ... with > > >generating the rest of the explanation). If you support the full > Lucene > > >query language, then you need to look at all the query types and > decide > > >what exactly you want to compute... |
|
|
Author: Chuck Williams,
2004-12-23, 08:56
|
|
|
Re: Relevance percentage - Lucene - [mail # user]
|
|
... to worry about the computing efficiency. This has the advantage that the other scoring factors are still used for ranking. Since the other factors can vary quite a bit, it is difficult...
|
|
|
Author: Gururaja H,
2004-12-21, 06:59
|
|
|
RE: Relevance percentage - Lucene - [mail # user]
|
|
... the rest of the explanation). If you support the full Lucene query language, then you need to look at all the query types and decide what exactly you want to compute (as coord is not always well...
|
|
|
Author: Gururaja H,
2004-12-21, 07:06
|
|
|
Re: Relevance percentage - Lucene - [mail # user]
|
|
...'d first try values between 3.0f and 5.0f for SOME_POWER. The searching code precomputes all coord values once per query per search, so there is no need to worry about the computing efficiency...
|
|
|
Author: Paul Elschot,
2004-12-20, 19:13
|
|
|
RE: Relevance and ranking ... - Lucene - [mail # user]
|
|
... of the lengthNorm() differences, by changing the sqrt() function in the computation of lengthNorm to something much flatter. E.g., you might use: public float lengthNorm(String fieldName, int num...
|
|
... constant (1000 in the example). Some general things: 1. You need to reindex when you change the Similarity (it is used for indexing and searching -- e.g., the lengthNorm's are computed at index...
|
|
|
Author: Gururaja H,
2004-12-21, 06:55
|
|
|
|