Skip to content

Files

Latest commit

7731022 · Dec 1, 2020

History

History
24 lines (17 loc) · 967 Bytes

File metadata and controls

24 lines (17 loc) · 967 Bytes

Emoji-Prediction-using-Tranfer-Learning-NLP

Emojis are the incredible way of expressing yourself. Therefore, our machines should also be aware of the appropriate emoji to be used at the right time. Thus, this project does the same. In this project, the model is predicting emoji's according to a given sentence using Deep Learning Models.

The following steps are mainly involved :

  1. Working with "Emoji" package.
  2. Processing the custom emoji dataset
  3. Glove vectors
  4. Glove embeddings
  5. Creating a LSTM architecture
  6. Training a stacked LSTM

Input

Text data consiting of different sentences along with the labels. Labels represent a particular emoji representing the sentence.

  1. test_emoji.csv - for testing our model
  2. train_emoji.csv - for training our model

Emoji_Prediction.ipynb

This python script contains the code for both the models and their predictions.

Also, I inferred that the accuracy of the model is more by using LSTM than RNN.