This project builds a predictive model to suggest the next word in a user-input phrase. It uses NLP techniques trained on large text corpora to improve user text input efficiency.
This project builds a predictive model to suggest the next word in a user-input phrase. It uses NLP techniques trained on large text corpora to improve user text input efficiency.
We use an n-gram model (bi- and tri-gram) with a backoff strategy. If a trigram is not found, the model falls back to a bigram. If no match is found, a common word is returned.