Skip to content

Evaluating classifiers on binary sentiment analysis of movie reviews

Notifications You must be signed in to change notification settings

s-nlp/filimdb_evaluation

 
 

Repository files navigation

Sentiment classification tasks

  1. Clone this repository:
git clone https://github.com/nvanva/filimdb_evaluation.git
  1. run init.sh to prepare dataset:
./init.sh
  1. create classifier.py and write the following functions:
def pretrain(texts):
   """
   Pretrain classifier on unlabeled texts. If your classifier cannot train on unlabeled data, skip this.
   :param texts: a list of texts (str objects), one str per example
   :return: learnt parameters, or any object you like (it will be passed to the train function)
   """
   
def train(texts, labels, pretrain_params=None):
    """
    Trains classifier on the given train set represented as parallel lists of texts and corresponding labels.
    :param texts: a list of texts (str objects), one str per example
    :param labels: a list of labels, one label per example
    :return: learnt parameters, or any object you like (it will be passed to the classify function) 
    """

def classify(texts, params):
    """
    Classify texts given previously learnt parameters.
    :param texts: texts to classify
    :param params: parameters received from train function
    :return: list of labels corresponding the the given list of texts
    """
  1. place classifier.py in the same folder as evaluate.py and run evaluate.py. It will score your classifier and create file preds.tsv with predictions.
python evaluate.py
  1. if you need to pretrain your model on all sets of texts (train, test, dev, unlabeled, dev-b, test-b), use --transductive command-line argument:
python evaluate.py --transductive

Language modeling tasks

  1. Clone this repository:
git clone https://github.com/nvanva/filimdb_evaluation.git
  1. run init.sh to prepare dataset:
./init.sh
  1. Edit lm.py and write the following functions:

  2. Run evaluate_lm.py

    python evaluate_lm.py evaluate --ptb-path='PTB'
    
  3. Sampling from lm

    python evaluate_lm.py sampling --size=20 --start-text='the meaning of life is'
    

Transliteration task

  1. Clone this repository:
git clone https://github.com/skoltech-nlp/filimdb_evaluation.git
  1. run init.sh to prepare dataset:
./init.sh
  1. Check baseline implementation in translit_baseline.py and evaluate it:
python evaluate_translit.py
  1. Modify translit.py according to assignment description, change importing in evaluate_translit.py from from translit_baseline import train, classify to from translit import train, classify.

  2. Check results again:

python evaluate_translit.py

About

Evaluating classifiers on binary sentiment analysis of movie reviews

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.8%
  • Shell 0.2%