Projects

Prediction Algorithm includes:

  1. Logistic Regression (sklearn: CountVectorizer -> TFIDF Transformer -> Logistic Regression)
  2. SVM (sklearn: CountVectorizer -> TFIDF Transformer -> SVM)
  3. Naive Bayes (sklearn: CountVectorizer -> TFIDF Transformer -> Naive Bayes) Code - IPYNB
  4. 1-D Convolution (Tensorflow/Keras: Word2Vec -> GloVE embeddings -> 1-D Convolution)
  5. LSTM (Tensorflow/Keras: Word2Vec -> GloVE embeddings -> LSTM)
  6. Bidirectional LSTM (Tensorflow/Keras: Word2Vec -> GloVE embeddings -> Bidirectional LSTM)
    Code Repo

Application:

  1. Flask Web Application with a simple form. It takes the link of reddit post (r/india) and returns back the Flair.
  2. Also includes a rest api which can predict the flairs of all the links placed in a text file and returns a json object of the predicted flairs.