gitextract_z313sz7r/ ├── ReadMe.md ├── attribute_level/ │ ├── attribute.py │ ├── best_test.sh │ ├── cp_AttA3_0/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_AttA3_2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_AttA3_ft2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_AttA3_tc/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_Bert/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_CNN_0/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_CNN_2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_CNN_ft2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_CNN_tc/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ └── networks2.py ├── bert/ │ ├── CONTRIBUTING.md │ ├── MSRP/ │ │ ├── LICENSE │ │ ├── MSR Paraphrase Corpus.lnk │ │ ├── Microsoft Shared Source License.htm │ │ ├── Microsoft Shared Source License.rtf │ │ ├── msr_paraphrase_README.htm │ │ ├── msr_paraphrase_README.rtf │ │ ├── msr_paraphrase_data.txt │ │ ├── msr_paraphrase_test.txt │ │ └── msr_paraphrase_train.txt │ ├── README.md │ ├── __init__.py │ ├── convert_tf_checkpoint_to_pytorch.py │ ├── convert_tf_checkpoint_to_pytorch_raw.py │ ├── download_MSRP.py │ ├── extract_features.py │ ├── glue_data/ │ │ ├── aspect_ensemble_online/ │ │ │ ├── 1/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ ├── test.tsv │ │ │ │ └── train.tsv │ │ │ ├── 2/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ ├── test.tsv │ │ │ │ └── train.tsv │ │ │ ├── 3/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ ├── test.tsv │ │ │ │ └── train.tsv │ │ │ ├── 4/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ ├── test.tsv │ │ │ │ └── train.tsv │ │ │ ├── 5/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ ├── test.tsv │ │ │ │ └── train.tsv │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── generate_npy.py │ │ ├── generate_npy_for_polarity.py │ │ ├── polarity_ensemble_online/ │ │ │ ├── 1/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ └── train.tsv │ │ │ ├── 2/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ └── train.tsv │ │ │ ├── 3/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ └── train.tsv │ │ │ ├── 4/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ └── train.tsv │ │ │ ├── 5/ │ │ │ │ ├── dev.ind │ │ │ │ ├── dev.tsv │ │ │ │ └── train.tsv │ │ │ └── test.tsv │ │ └── test.tsv │ ├── modeling.py │ ├── notebooks/ │ │ ├── Comparing TF and PT models SQuAD predictions.ipynb │ │ └── Comparing TF and PT models.ipynb │ ├── optimization.py │ ├── requirements.txt │ ├── run_classifier.py │ ├── run_classifier_2.py │ ├── run_classifier_ensemble.py │ ├── run_classifier_ensemble_polarity.py │ ├── run_squad.py │ ├── samples/ │ │ ├── input.txt │ │ └── sample_text.txt │ ├── tests/ │ │ ├── modeling_test.py │ │ ├── optimization_test.py │ │ └── tokenization_test.py │ └── tokenization.py ├── data/ │ ├── aspect_ensemble_online/ │ │ ├── 1/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ ├── test.tsv │ │ │ └── train.tsv │ │ ├── 2/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ ├── test.tsv │ │ │ └── train.tsv │ │ ├── 3/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ ├── test.tsv │ │ │ └── train.tsv │ │ ├── 4/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ ├── test.tsv │ │ │ └── train.tsv │ │ └── 5/ │ │ ├── dev.ind │ │ ├── dev.tsv │ │ ├── test.tsv │ │ └── train.tsv │ ├── backup/ │ │ ├── test_predict_aspect_ensemble_['Mon', 'Nov', '19', '20_30_28', '2018'].txt │ │ ├── test_predict_aspect_ensemble_['Tue', 'Nov', '13', '21_48_57', '2018'].txt │ │ ├── test_predict_aspect_ensemble_['Tue', 'Nov', '13', '21_49_23', '2018'].txt │ │ ├── test_predict_polarity_ensemble_['Mon', 'Nov', '19', '20_25_00', '2018'].txt │ │ ├── test_predict_polarity_ensemble_['Mon', 'Nov', '19', '20_26_03', '2018'].txt │ │ ├── test_predict_polarity_ensemble_['Mon', 'Nov', '19', '20_30_35', '2018'].txt │ │ ├── test_predict_polarity_ensemble_['Mon', 'Nov', '19', '20_42_02', '2018'].txt │ │ └── test_predict_polarity_ensemble_['Tue', 'Nov', '13', '21_49_37', '2018'].txt │ ├── build_test_for_predict.py │ ├── generate_dev.py │ ├── generate_dev_polarity.py │ ├── generate_test.py │ ├── polarity_ensemble_online/ │ │ ├── 1/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ └── train.tsv │ │ ├── 2/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ └── train.tsv │ │ ├── 3/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ └── train.tsv │ │ ├── 4/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ └── train.tsv │ │ ├── 5/ │ │ │ ├── dev.ind │ │ │ ├── dev.tsv │ │ │ └── train.tsv │ │ └── test.tsv │ ├── submit2.csv │ ├── submit2.py │ ├── submit2_stacking_all_bert.csv │ ├── submit_example_2.csv │ ├── test.txt │ ├── test_predict_aspect_ensemble.txt │ ├── test_predict_polarity_ensemble.txt │ ├── test_public_2.csv │ ├── train.txt │ └── vocabulary.pkl ├── dataset/ │ ├── attribute.json │ ├── clean_data.py │ ├── clean_test.py │ ├── polarity.json │ ├── submit_example_2.csv │ ├── test_public_2.csv │ └── train_2.csv ├── embedding/ │ ├── embedding_all_fasttext2_300.txt │ ├── embedding_all_merge_300.txt │ └── embedding_all_tencent_200.txt ├── polarity_level_aspect/ │ ├── ab_polarity.py │ ├── backup/ │ │ ├── cp_AT_LSTM_0/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_AT_LSTM_2/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_AT_LSTM_ft2/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_AT_LSTM_tc/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_Bert/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_GCAE_0/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_GCAE_2/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_GCAE_ft2/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_GCAE_tc/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_HEAT_0/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ ├── cp_HEAT_2/ │ │ │ └── npy/ │ │ │ ├── oof_test.npy │ │ │ ├── oof_train.npy │ │ │ └── oof_train_y.npy │ │ └── cp_HEAT_tc/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── best_test.sh │ ├── cp_AT_LSTM_0/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_AT_LSTM_2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_AT_LSTM_ft2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_AT_LSTM_tc/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_Bert/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_GCAE_0/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_GCAE_2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_GCAE_ft2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_GCAE_tc/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_HEAT_0/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_HEAT_2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_HEAT_ft2/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ ├── cp_HEAT_tc/ │ │ └── npy/ │ │ ├── oof_test.npy │ │ ├── oof_train.npy │ │ └── oof_train_y.npy │ └── networks.py └── utils/ ├── Data.py ├── data_helper.py ├── evaluate.py ├── prepare_w2v.py ├── prepare_w2v_with_UNK.py ├── train.py ├── train2.py ├── train_single.py ├── utils.py └── vocabulary2.pkl