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,461
  • 3
  • 17
  • 23

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
  • 45,555
  • 16
  • 123
  • 175