Emoji Prediction
Classification
Emoji Embeddings
Train an embedding model (character or word) on the tweets.
Get tweet embeddings using averaging/any other method.
Classify tweets using KNN Naive Bayes.
Classify tweets using simple MLP.
Train an embedding model on the tweets along with the emojis.
Given a tweet without emoji, find its embedding (averaging of word embeddings).
Find closest emoji to it.
Recurrent networks Train a simple single-layer RNN with softmax activation for classification. Use the embeddings obtained from the RNN model and see how they perform with MVPs.