NinFan

spell checker using machine learning

checker, learning, machine, Spell

JamSpell is an ML-based spell checker that will use pre-trained models from:

https://github.com/bakwc/JamSpell-models/

The python code looks very clear and concise.

import jamspell
jsp = jamspell.TSpellCorrector ()
assert jsp.LoadLangModel (‘en.bin’)
jsp.FixFragment (“I am the cherken of the spell started”)

The above code will return:

I am the best spell checker

It really is an accurate, fast and multilingual spell checker.

https://github.com/bakwc/JamSpell

Labels: machine_learning, user-friendliness

Leave a Comment