“Backoff Algorithm used with up to four-gram text tokenization”
- A four-gram is a four word text string “Sally is a dog”
- Tri-gram, Bi-gram, and Uni-gram are lower count phrases
- Backoff Algorithm looks for four-gram match to predict the user's next word. If no four-gram match is found, the model looks for a tri-gram match. If no tri-gram match is found, looks for Bi-gram. etc.
- Application shows the 15 most frequently found matches in training dataset