RE: Suggesting refine searches with Lucene

2006-02-13 Thread Koji Sekiguchi
I may misunderstand your needs, but isn't it relevance feedback? Please check Grant Ingersoll's presentation at ApacheCon 2005. He put out great demo programs for the relevance feedback using Lucene. Thank you, Koji > -Original Message- > From: Chun Wei Ho [mailto:[EMAIL PROTECTED] > Sen

Re: Suggesting refine searches with Lucene

2006-02-13 Thread Chris Hostetter
Take a look at the HighFreqTerms sample class in contrib... http://svn.apache.org/viewcvs.cgi/lucene/java/trunk/contrib/miscellaneous/src/java/org/apache/lucene/misc/HighFreqTerms.java?rev=376393&view=log ...it doesn't meet your goal, because it returns a list of terms that appear frequently in

Re: Suggesting refine searches with Lucene

2006-02-13 Thread Ben
I may be wrong but isn't this what Carrot2 does? -Ben On 2/13/06, Chun Wei Ho <[EMAIL PROTECTED]> wrote: > > Thanks. But I am actually looking for approaches/libraries which will > help me to come up with the suggested "refine searches". > > For example I might search for "accident" on the headli

Re: Suggesting refine searches with Lucene

2006-02-13 Thread Chun Wei Ho
Thanks. But I am actually looking for approaches/libraries which will help me to come up with the suggested "refine searches". For example I might search for "accident" on the headlines at a news site, which would come back with lots of hits. I am looking for something that would analyze the headl

RE: Suggesting refine searches with Lucene

2006-02-13 Thread Ravi
Hi , I have implemented by using query "mergeBooleanQueries" method... in this approach I have created one POJO class of RefineQuery which contains one variable called Query and I will set whenever I get a search.. And next time if it is a refined search I will merge current query with the refin