This presentation features the Next Word Predict app including an introduction to the application user interface and details about the text prediction algorithm.
The Next Word Predict app is located at:
The source code files can be found on GitHub:
2024-06-21
This presentation features the Next Word Predict app including an introduction to the application user interface and details about the text prediction algorithm.
The Next Word Predict app is located at:
The source code files can be found on GitHub:
Next Word Predict is a Shiny app that uses a text prediction algorithm to predict the next word(s) based on text entered by a user.
The application will suggest the next word in a sentence using an n-gram algorithm. An n-gram is a contiguous sequence of n words from a given sequence of text.
The text used to build the predictive text model came from a large corpus of blogs, news and twitter data. N-grams were extracted from the corpus and then used to build the predictive text model.
The predictive text model was built from a sample of 1,000,000 lines extracted from the large corpus of twitter data.
The sample data was then tokenized and cleaned using the tm package and a number of regular expressions using the gsub function. The data was converted to lowercase, removed all non-ascii characters, URLs, email addresses, Twitter handles, hash tags, ordinal numbers, profane words, punctuation and whitespace. The data was then split into tokens (n-grams).
As text is entered by the user, the algorithm iterates from longest n-gram (4-gram) to shortest (2-gram) to detect a match. The predicted next word is considered using the longest, most frequent matching n-gram. The algorithm makes use of a simple back-off strategy.
The predicted next word will be shown when the app detects that you have finished typing one or more words. Use the slider tool to select up to three next word predictions. The top prediction will be shown first followed by the second and third likely next words.