/sequential_sentence_classification

https://arxiv.org/pdf/1909.04054

Primary LanguagePythonApache License 2.0Apache-2.0

Sequential Sentence Classification

This repo has code and data for our paper "Pretrained Language Models for Sequential Sentence Classification".

How to run

pip install -r requirements.txt
scripts/train.sh tmp_output_dir

Update the scripts/train.sh script with the appropriate hyperparameters and datapaths.

CSAbstrcut dataset

The train, dev, test splits of the dataset are in data/CSAbstrcut

Citing

If you use the data or the model, please cite,

@inproceedings{Cohan2019EMNLP,
  title={Pretrained Language Models for Sequential Sentence Classification},
  author={Arman Cohan, Iz Beltagy, Daniel King, Bhavana Dalvi, Dan Weld},
  year={2019},
  booktitle={EMNLP},
}

Setup git

!git config --global user.email "sandeep82945@gmail.com" !git config --global user.name "sandeep82945" !git remote rm origin !git remote add origin https://sandeep82945:<oauth_token>@github.com/sandeep82945/sequential_sentence_classification.git !git push --set-upstream origin master

to push to git

!git add . !git commit -am "adding Changes" !git push origin master