RE: Spelling Corrector Algorithm

2012-03-01 Thread Husain, Yavar
: Spelling Corrector Algorithm On Thu, Mar 1, 2012 at 6:43 AM, Husain, Yavar wrote: > Hi > > For spell checking component I set extendedResults to get the frequencies and > then select the word with the best frequency. I understand the spell check > algorithm based on Edit Distance.

RE: Spelling Corrector Algorithm

2012-03-01 Thread Husain, Yavar
apply some NLP stuff. From: Dyer, James [james.d...@ingrambook.com] Sent: Thursday, March 01, 2012 9:29 PM To: solr-user@lucene.apache.org Subject: RE: Spelling Corrector Algorithm Yavar, When you listed what the spell checker returns you put them in

Re: Spelling Corrector Algorithm

2012-03-01 Thread Robert Muir
On Thu, Mar 1, 2012 at 6:43 AM, Husain, Yavar wrote: > Hi > > For spell checking component I set extendedResults to get the frequencies and > then select the word with the best frequency. I understand the spell check > algorithm based on Edit Distance. For an example: > > Query to Solr: Marien >

RE: Spelling Corrector Algorithm

2012-03-01 Thread Dyer, James
Yavar, When you listed what the spell checker returns you put them in this order: > Marine (Freq: 120), Market (Freq: 900) and others Was "Marine" listed first, and then did you pick "Market" because you thought higher frequency is better? If so, you probably have the right settings already b