Re: Adaptive search?

2010-01-11 Thread Shalin Shekhar Mangar
On Fri, Jan 8, 2010 at 3:41 AM, Otis Gospodnetic otis_gospodne...@yahoo.com wrote: - Original Message From: Shalin Shekhar Mangar shalinman...@gmail.com To: solr-user@lucene.apache.org Sent: Wed, December 23, 2009 2:45:21 AM Subject: Re: Adaptive search? On Wed, Dec 23

Re: Adaptive search?

2010-01-11 Thread Ravi Gidwani
: On Fri, Jan 8, 2010 at 3:41 AM, Otis Gospodnetic otis_gospodne...@yahoo.com wrote: - Original Message From: Shalin Shekhar Mangar shalinman...@gmail.com To: solr-user@lucene.apache.org Sent: Wed, December 23, 2009 2:45:21 AM Subject: Re: Adaptive search

Re: Adaptive search?

2010-01-11 Thread Chris Hostetter
: I was talking about boosting documents using past popularity. So a user : searches for X and gets 10 results. This view is recorded for each of the 10 : documents and added to the index later. If a user clicks on result #2, the : click is recorded for doc #2 and added to index. We boost using

Re: Adaptive search?

2010-01-07 Thread Otis Gospodnetic
Shalin, - Original Message From: Shalin Shekhar Mangar shalinman...@gmail.com To: solr-user@lucene.apache.org Sent: Wed, December 23, 2009 2:45:21 AM Subject: Re: Adaptive search? On Wed, Dec 23, 2009 at 4:09 AM, Lance Norskog wrote: Nice! Siddhant: Another problem

Re: Adaptive search?

2009-12-22 Thread Siddhant Goel
On Tue, Dec 22, 2009 at 12:01 PM, Ryan Kennedy rcken...@gmail.com wrote: This approach will be limited to applying a global rank to all the documents, which may have some unintended consequences. The most popular document in your index will be the most popular, even for queries for which it

Re: Adaptive search?

2009-12-22 Thread Lance Norskog
Nice! Siddhant: Another problem to watch out for is the feedback problem: someone clicks on a link and it automatically becomes more interesting, so someone else clicks, and it gets even more interesting... So you need some kind of suppression. For example, as individual clicks get older, you can

Re: Adaptive search?

2009-12-22 Thread Shalin Shekhar Mangar
On Wed, Dec 23, 2009 at 4:09 AM, Lance Norskog goks...@gmail.com wrote: Nice! Siddhant: Another problem to watch out for is the feedback problem: someone clicks on a link and it automatically becomes more interesting, so someone else clicks, and it gets even more interesting... So you need

Re: Adaptive search?

2009-12-21 Thread Ian Holsman
On 12/18/09 2:46 AM, Siddhant Goel wrote: Let say we have a search engine (a simple front end - web app kind of a thing - responsible for querying Solr and then displaying the results in a human readable form) based on Solr. If a user searches for something, gets quite a few search results, and

Re: Adaptive search?

2009-12-21 Thread Lance Norskog
Solr does have the ExternalFileField available. You could track existing clicks from the container search log and generate a file to be used with ExternalFileField. http://lucene.apache.org/solr/api/org/apache/solr/schema/ExternalFileField.html In the solr source,

Re: Adaptive search?

2009-12-21 Thread Ryan Kennedy
On Mon, Dec 21, 2009 at 3:36 PM, Lance Norskog goks...@gmail.com wrote: Solr does have the ExternalFileField available. You could track existing clicks from the container search log and generate a file to be used with ExternalFileField.

Re: Adaptive search?

2009-12-18 Thread Alexey Serba
You can add click counts to your index as additional field and boost results based on that value. http://wiki.apache.org/solr/SolrRelevancyFAQ#How_can_I_change_the_score_of_a_document_based_on_the_.2Avalue.2A_of_a_field_.28say.2C_.22popularity.22.29 You can keep some kind of buffer for clicks

Adaptive search?

2009-12-17 Thread Siddhant Goel
Hi, Does Solr provide adaptive searching? Can it adapt to user clicks within the search results it provides? Or that has to be done externally? I couldn't find anything on googling for it. Thanks, -- - Siddhant

Re: Adaptive search?

2009-12-17 Thread Paul Libbrecht
What can it mean to adapt to user clicks ? Quite many things in my head. Do you have maybe a citation that inspires you here? paul Le 17-déc.-09 à 13:52, Siddhant Goel a écrit : Does Solr provide adaptive searching? Can it adapt to user clicks within the search results it provides? Or

Re: Adaptive search?

2009-12-17 Thread Siddhant Goel
Let say we have a search engine (a simple front end - web app kind of a thing - responsible for querying Solr and then displaying the results in a human readable form) based on Solr. If a user searches for something, gets quite a few search results, and then clicks on one such result - is there