Data Science Capstone Final Project

Reda LAHLIMI
31 October 2024

Instructions

The goal of this exercise is to create a product to highlight the prediction algorithm that you have built and to provide an interface that can be accessed by others. For this project you must submit:

Word predictor

The goal of this app is to predict next word based on phrase input by user.

Example:

Input string:

for the first

Predicted word:

time

App Details

Source dataset: A training data from twitter news and blog. https://d396qusza40orc.cloudfront.net/dsscapstone/dataset/Coursera-SwiftKey.zip

Algorithm:

  • Cleanning the corpora.
  • Tokenization the corpora.
  • Build n-gram model for predicting the next word based on the previous 1, 2, or 3 words.

More Information