Putting It All Together

Review this section's material. Learn about the weaknesses of the Norvig spellchecker and some possible methods of improvement.

Review

In this section, we learned the general equation for building a spellchecker:

 arg maxc  candidates P(c)P(wc)\underset{c \ \in \ \text{candidates}} { \text{ arg\ max}} \ P(c) P(w|c)

And then, we broke this down into the four mechanisms that fulfill this equation:

  • Candidate model: The ...