N-GRAM models are very important when we have to identify words in a noisy and ambiguous input. N-GRAM models are used in:
You can read more about N-GRAM models in:
P( glasses | reading ) = Count( reading glasses ) / Count( reading )
We count the sequences reading glasses
and glasses
from corpus and compute the probability.