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?
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.