Re: How to pull document scoring values

2004-09-29 Thread Paul Elschot
On Wednesday 29 September 2004 15:41, Zia Syed wrote: > Hi Paul, > Thanks for your detailed reply! It really helped alot. > However, I am experiancing some conflicts. > > For one of the documents in result set, when i use > > IndexReader fir=FilterIndexReader.open("index"); > byte[] fNorm=fir.norm(

Re: How to pull document scoring values

2004-09-29 Thread Zia Syed
Hi Paul, Thanks for your detailed reply! It really helped alot. However, I am experiancing some conflicts. For one of the documents in result set, when i use IndexReader fir=FilterIndexReader.open("index"); byte[] fNorm=fir.norm("Body"); System.out.println("FNorm: "+ fNorm[306]); Document d=fir.

Re: How to pull document scoring values

2004-09-29 Thread Paul Elschot
Zia, On Tuesday 28 September 2004 21:22, you wrote: > Hi, > > I'm trying to learn the Scoring mechanism of Lucene. I want to fetch > each parameter value individually as they are collectively dumped out by > Explanation. I've managed to pull out TF and IDF values using > DefaultSimilarity and Filt