Skip to main content

All Questions

2 votes
1 answer
146 views

Spell-Check: Find one-to-one token difference mapping between two strings

I recently stumbled over this question on an internet archive and am having some difficulty wrapping my head around it. I want to find a desired mapping amongst the different tokens between two ...
Shubham Mittal's user avatar
3 votes
1 answer
1k views

how to stop a java spell checker program from correcting repetitive words

I've implemented a program that does the following: scan all of the words in a web page into a string (using jsoup) Filter out all of the HTML markup and code Put these words into a spell checking ...
ary's user avatar
  • 91
2 votes
1 answer
949 views

Peter Norvig's spell checker for multi-word matches

Peter Norvig's famous spellchecker (Java 8 version here) is able to correct single words, if something close to that word appears in training data. But how can I adapt it to handle entire phrases. For ...
Daud's user avatar
  • 7,937
0 votes
0 answers
157 views

string-comparison algorithm for user defined dictionary

In my project the user input is translated to a string in the form of [x,x,x,x,x,x,x,x,x,x] where x is a number between 1 and 8 and stored to a library of this type of strings. Later I have to compare ...
Anonymous's user avatar
  • 4,910
1 vote
3 answers
3k views

Spelling Correction Algorithm

This is generic algorithms stuff too so please dont stop reading if you see solr in text (please skip first 3 lines) In Solr, For spell checking component I set extendedResults to get the frequencies ...
Yavar's user avatar
  • 11.9k