Re: Documents to query

2014-11-24 Thread Mikhail Khludnev
Doesn't it sound like faceting? On Mon, Nov 24, 2014 at 9:44 PM, Robust Links wrote: > @ Alexandre.. the business case is the following. I am using lucene/solr to > compose vectors. I want to apply different functions (addition, > multipication, tensor products,etc) to these vectors. The end res

Re: Documents to query

2014-11-24 Thread Robust Links
i "term" is the title of the document indexed. So its not an unbounded query term. On Mon, Nov 24, 2014 at 2:02 PM, Alexandre Rafalovitch wrote: > Is this the "Paris - France + Italy = Rome" thing? I think I've seen a > couple of discussions about that. > > When you say a "term" are you actually

Re: Documents to query

2014-11-24 Thread Alexandre Rafalovitch
Is this the "Paris - France + Italy = Rome" thing? I think I've seen a couple of discussions about that. When you say a "term" are you actually looking for one keyword? Because that's very different from a query that can be infinitely complex. Regards, Alex. Personal: http://www.outerthoughts.

Re: Documents to query

2014-11-24 Thread Robust Links
@ Alexandre.. the business case is the following. I am using lucene/solr to compose vectors. I want to apply different functions (addition, multipication, tensor products,etc) to these vectors. The end result of that is a new vector. I would like to then go back from that vector back to term that m

Re: Documents to query

2014-11-24 Thread Walter Underwood
This feature is called “more like this”. I think it only works for a single document, but it probably could be extended. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ On Nov 24, 2014, at 10:26 AM, Alexandre Rafalovitch wrote: > Very unlikely. What's the business

Re: Documents to query

2014-11-24 Thread Alexandre Rafalovitch
Very unlikely. What's the business case? Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 On 24 November 2014 at 13:23, Robust

Documents to query

2014-11-24 Thread Robust Links
Hi Is there a way (in Lucene / SOLR) to go from a vector of documents (IDs, and optionally their scores) to a query? i.e. the reverse process of query -> document? thank you Peyman