Re: Find related words

2013-07-08 Thread Otis Gospodnetic
Not sure... but if you need Collocations/SIPs, you can try the non-free-but-cheaper-than-DIY http://sematext.com/products/key-phrase-extractor/index.html Otis -- Solr ElasticSearch Support -- http://sematext.com/ Performance Monitoring -- http://sematext.com/spm On Sun, Jul 7, 2013 at 12:42

Re: Find related words

2013-07-06 Thread William Bell
Why is LUCENE-474 not committed? On Thu, Jul 4, 2013 at 4:21 PM, Koji Sekiguchi k...@r.email.ne.jp wrote: Hi Dotan, (13/07/04 23:51), Dotan Cohen wrote: Thank you Jack and Koji. I will take a look at MLT and also at the .zip files from LUCENE-474. Koji, did you have to modify the code

Find related words

2013-07-04 Thread Dotan Cohen
How might one find the top related words for a given word in a Solr index? For instance, given the following single-field documents: 1: I love chocolate 2: I love Solr 3: I eat chocolate cake 4: You will eat chocolate candy Thus, given the word Chocolate Solr might find these top words: I (3

Re: Find related words

2013-07-04 Thread Jack Krupansky
: Thursday, July 04, 2013 8:09 AM To: solr-user@lucene.apache.org Subject: Find related words How might one find the top related words for a given word in a Solr index? For instance, given the following single-field documents: 1: I love chocolate 2: I love Solr 3: I eat chocolate cake 4: You

Re: Find related words

2013-07-04 Thread Koji Sekiguchi
You may want collocations a given word? I've implemented LUCENE-474 for Solr a while ago and I found it worked pretty well. https://issues.apache.org/jira/browse/LUCENE-474 Hope this helps. koji -- http://soleami.com/blog/automatically-acquiring-synonym-knowledge-from-wikipedia.html (13/07/04

Re: Find related words

2013-07-04 Thread Dotan Cohen
Thank you Jack and Koji. I will take a look at MLT and also at the .zip files from LUCENE-474. Koji, did you have to modify the code for the latest Solr? -- Dotan Cohen http://gibberish.co.il http://what-is-what.com

Re: Find related words

2013-07-04 Thread Koji Sekiguchi
Hi Dotan, (13/07/04 23:51), Dotan Cohen wrote: Thank you Jack and Koji. I will take a look at MLT and also at the .zip files from LUCENE-474. Koji, did you have to modify the code for the latest Solr? Yes. As the Lucene APIs for accessing index have been changed, I had to modify the code.