3

Possible Duplicate:
What algorithm gives suggestions in a spell checker?

I need to develop a Bengali spell checker and correct spell suggester. I had developed one using Edit Distance Algorithm, which does not give good prediction. Can anyone guide me to some better approach?

Community
  • 1
  • 1
alienCoder
  • 1,381
  • 1
  • 16
  • 22

1 Answers1

6

Peter Norvig wrote a popular article on how to build a statistical spelling corrector. If you can find a bunch of probably-correct Bengali text, the approach might work for you. The examples are in Python, but the approach is not language specific.

Adrian McCarthy
  • 43,194
  • 15
  • 118
  • 167