Next Word Prediction Application

Noel Temena
11/27/17

About the Application

This application will try to predict the next word you meant to type.

Just type a word or a phrase on the text box and it will automatically predict the next word with the highest score.

Scoring is based on word combination popularity.

This app behaves the same as the SmartKey features found on a lot of smartphone.

How the word prediction works

  • Count the number of words entered
  • Using the given word, search the Ngram model(2word, 3word and 4word) file based from: Word count + 1 = Ngram file
  • If word count is greater than 4 then use the BACKOFF algorithm
  • Backoff algorithm start with processing the given words:
determine the last 3 words
determine the last 2 words
determine the last word
  • Using the last 3 words search the 2word Ngram file
  • Continue up to the last word if search results is NULL

App Features

Average word search system response: 0.78 secs

No submit button is required after typing

Top 5 words are dynamically shown with corresponding scores

Random technical quotes are shown during the start of the application

Links