├── .gitignore ├── experiments_log.md ├── input └── tweet-sentiment-extraction │ ├── train_10fold.csv │ └── tweet_dataset.csv ├── notebook ├── .ipynb_checkpoints │ ├── EDA-alignment-checkpoint.ipynb │ ├── EDA-alignment-origindataset-checkpoint.ipynb │ ├── EDA-checkpoint.ipynb │ ├── EDA-label-checkpoint.ipynb │ ├── EDA-multispan-checkpoint.ipynb │ ├── EDA-position-checkpoint.ipynb │ ├── EDA-result-checkpoint.ipynb │ ├── EDA-whole-checkpoint.ipynb │ ├── Untitled-checkpoint.ipynb │ ├── Untitled1-checkpoint.ipynb │ ├── bert-prepare-data-checkpoint.ipynb │ ├── bert-prepare-data-multispan-Copy1-checkpoint.ipynb │ ├── clean_label-checkpoint.ipynb │ ├── eda-aug-checkpoint.ipynb │ ├── eda-distillation-Copy1-checkpoint.ipynb │ ├── eda-distillation-checkpoint.ipynb │ ├── eda_clean-checkpoint.ipynb │ ├── post-processing-checkpoint.ipynb │ ├── pred-eda-checkpoint.ipynb │ ├── prepare_lm_data-checkpoint.ipynb │ ├── prepare_lm_data_aug-checkpoint.ipynb │ ├── robert-prepare-data-checkpoint.ipynb │ ├── robert-prepare-data-multispan-aug-Copy1-checkpoint.ipynb │ ├── robert-prepare-data-multispan-aug-checkpoint.ipynb │ ├── robert-prepare-data-multispan-aug-pseudo-checkpoint.ipynb │ ├── robert-prepare-data-multispan-checkpoint.ipynb │ ├── robert-prepare-data-multispan-nospace-checkpoint.ipynb │ ├── robert-prepare-data-pseudo-checkpoint.ipynb │ ├── robert-prepare-data-v10-checkpoint.ipynb │ └── roberta-prepare-data-with-pseudo-checkpoint.ipynb ├── .~lock.kankan.csv# ├── 0_broken_samples.txt ├── 1_broken_samples.txt ├── 1_non_broken_samples.txt ├── 2_broken_samples.txt ├── 2_non_broken_samples.txt ├── 3_broken_samples.txt ├── EDA-alignment-origindataset.ipynb ├── EDA-alignment.ipynb ├── EDA-label.ipynb ├── EDA-multispan.ipynb ├── EDA-position.ipynb ├── EDA-result.ipynb ├── EDA-whole.ipynb ├── EDA.ipynb ├── Untitled.ipynb ├── Untitled1.ipynb ├── bert-prepare-data-multispan-Copy1.ipynb ├── bert-prepare-data.ipynb ├── broken_samples.txt ├── clean_label.ipynb ├── dataset10.py ├── eda-aug.ipynb ├── eda-distillation-Copy1.ipynb ├── eda-distillation.ipynb ├── eda_clean.ipynb ├── kankan.csv ├── non_broken_samples.txt ├── post-processing.ipynb ├── pred-eda.ipynb ├── prepare_lm_data.ipynb ├── prepare_lm_data_aug.ipynb ├── robert-prepare-data-multispan-aug-Copy1.ipynb ├── robert-prepare-data-multispan-aug-pseudo.ipynb ├── robert-prepare-data-multispan-aug.ipynb ├── robert-prepare-data-multispan-nospace.ipynb ├── robert-prepare-data-multispan.ipynb ├── robert-prepare-data-pseudo.ipynb ├── robert-prepare-data-v10.ipynb ├── robert-prepare-data.ipynb ├── roberta-prepare-data-with-pseudo.ipynb └── utilsv10.py ├── readme.md ├── sh ├── with_original_sentiment.sh └── without_original_sentiment.sh └── src ├── dataset10.py ├── dataset11.py ├── train_v10.py ├── train_v11.py └── utilsv10.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/.gitignore -------------------------------------------------------------------------------- /experiments_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/experiments_log.md -------------------------------------------------------------------------------- /input/tweet-sentiment-extraction/train_10fold.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/input/tweet-sentiment-extraction/train_10fold.csv -------------------------------------------------------------------------------- /input/tweet-sentiment-extraction/tweet_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/input/tweet-sentiment-extraction/tweet_dataset.csv -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-alignment-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-alignment-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-alignment-origindataset-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-alignment-origindataset-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-label-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-label-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-multispan-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-multispan-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-position-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-position-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-result-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-result-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/EDA-whole-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/EDA-whole-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/Untitled1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/Untitled1-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/bert-prepare-data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/bert-prepare-data-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/bert-prepare-data-multispan-Copy1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/bert-prepare-data-multispan-Copy1-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/clean_label-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/clean_label-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/eda-aug-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/eda-aug-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/eda-distillation-Copy1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/eda-distillation-Copy1-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/eda-distillation-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/eda-distillation-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/eda_clean-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/eda_clean-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/post-processing-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/post-processing-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/pred-eda-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/pred-eda-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/prepare_lm_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/prepare_lm_data-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/prepare_lm_data_aug-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/prepare_lm_data_aug-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-multispan-aug-Copy1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-multispan-aug-Copy1-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-multispan-aug-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-multispan-aug-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-multispan-aug-pseudo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-multispan-aug-pseudo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-multispan-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-multispan-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-multispan-nospace-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-multispan-nospace-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-pseudo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-pseudo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/robert-prepare-data-v10-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/robert-prepare-data-v10-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/roberta-prepare-data-with-pseudo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.ipynb_checkpoints/roberta-prepare-data-with-pseudo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.~lock.kankan.csv#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/.~lock.kankan.csv# -------------------------------------------------------------------------------- /notebook/0_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/0_broken_samples.txt -------------------------------------------------------------------------------- /notebook/1_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/1_broken_samples.txt -------------------------------------------------------------------------------- /notebook/1_non_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/1_non_broken_samples.txt -------------------------------------------------------------------------------- /notebook/2_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/2_broken_samples.txt -------------------------------------------------------------------------------- /notebook/2_non_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/2_non_broken_samples.txt -------------------------------------------------------------------------------- /notebook/3_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/3_broken_samples.txt -------------------------------------------------------------------------------- /notebook/EDA-alignment-origindataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-alignment-origindataset.ipynb -------------------------------------------------------------------------------- /notebook/EDA-alignment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-alignment.ipynb -------------------------------------------------------------------------------- /notebook/EDA-label.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-label.ipynb -------------------------------------------------------------------------------- /notebook/EDA-multispan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-multispan.ipynb -------------------------------------------------------------------------------- /notebook/EDA-position.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-position.ipynb -------------------------------------------------------------------------------- /notebook/EDA-result.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-result.ipynb -------------------------------------------------------------------------------- /notebook/EDA-whole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA-whole.ipynb -------------------------------------------------------------------------------- /notebook/EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/EDA.ipynb -------------------------------------------------------------------------------- /notebook/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/Untitled.ipynb -------------------------------------------------------------------------------- /notebook/Untitled1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/Untitled1.ipynb -------------------------------------------------------------------------------- /notebook/bert-prepare-data-multispan-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/bert-prepare-data-multispan-Copy1.ipynb -------------------------------------------------------------------------------- /notebook/bert-prepare-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/bert-prepare-data.ipynb -------------------------------------------------------------------------------- /notebook/broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/broken_samples.txt -------------------------------------------------------------------------------- /notebook/clean_label.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/clean_label.ipynb -------------------------------------------------------------------------------- /notebook/dataset10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/dataset10.py -------------------------------------------------------------------------------- /notebook/eda-aug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/eda-aug.ipynb -------------------------------------------------------------------------------- /notebook/eda-distillation-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/eda-distillation-Copy1.ipynb -------------------------------------------------------------------------------- /notebook/eda-distillation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/eda-distillation.ipynb -------------------------------------------------------------------------------- /notebook/eda_clean.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/eda_clean.ipynb -------------------------------------------------------------------------------- /notebook/kankan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/kankan.csv -------------------------------------------------------------------------------- /notebook/non_broken_samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/non_broken_samples.txt -------------------------------------------------------------------------------- /notebook/post-processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/post-processing.ipynb -------------------------------------------------------------------------------- /notebook/pred-eda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/pred-eda.ipynb -------------------------------------------------------------------------------- /notebook/prepare_lm_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/prepare_lm_data.ipynb -------------------------------------------------------------------------------- /notebook/prepare_lm_data_aug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/prepare_lm_data_aug.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-multispan-aug-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-multispan-aug-Copy1.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-multispan-aug-pseudo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-multispan-aug-pseudo.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-multispan-aug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-multispan-aug.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-multispan-nospace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-multispan-nospace.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-multispan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-multispan.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-pseudo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-pseudo.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data-v10.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data-v10.ipynb -------------------------------------------------------------------------------- /notebook/robert-prepare-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/robert-prepare-data.ipynb -------------------------------------------------------------------------------- /notebook/roberta-prepare-data-with-pseudo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/roberta-prepare-data-with-pseudo.ipynb -------------------------------------------------------------------------------- /notebook/utilsv10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/notebook/utilsv10.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/readme.md -------------------------------------------------------------------------------- /sh/with_original_sentiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/sh/with_original_sentiment.sh -------------------------------------------------------------------------------- /sh/without_original_sentiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/sh/without_original_sentiment.sh -------------------------------------------------------------------------------- /src/dataset10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/src/dataset10.py -------------------------------------------------------------------------------- /src/dataset11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/src/dataset11.py -------------------------------------------------------------------------------- /src/train_v10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/src/train_v10.py -------------------------------------------------------------------------------- /src/train_v11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/src/train_v11.py -------------------------------------------------------------------------------- /src/utilsv10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/Tweet-Sentiment-Extraction/HEAD/src/utilsv10.py --------------------------------------------------------------------------------