Re: RF and IDF

2006-01-11 Thread Yonik Seeley
Click on "Source Repository" off of the main Lucene page. Here is a pointer to the search package containing TermQuery/Weight/Scorer http://svn.apache.org/viewcvs.cgi/lucene/java/trunk/src/java/org/apache/lucene/search/?sortby=file#dirlist Look in TermQuert for TermWeight (it's an inner class).

Re: RF and IDF

2006-01-11 Thread Yonik Seeley
On 1/11/06, Klaus <[EMAIL PROTECTED]> wrote: > Hi all, > > do you know how the tf und idf values are computed by the default > similarity? I mean the exact mathematical equation. Well, here is the default Similarity: /** Expert: Default scoring implementation. */ public class DefaultSimilarity ex