├── Ind-BiLSTM.py ├── P_cause.py ├── P_emotion.py ├── README.md ├── data_combine ├── all_data_pair.txt ├── clause_keywords.csv ├── clause_keywords_emotion.txt ├── fold10_test.txt ├── fold10_train.txt ├── fold1_test.txt ├── fold1_train.txt ├── fold2_test.txt ├── fold2_train.txt ├── fold3_test.txt ├── fold3_train.txt ├── fold4_test.txt ├── fold4_train.txt ├── fold5_test.txt ├── fold5_train.txt ├── fold6_test.txt ├── fold6_train.txt ├── fold7_test.txt ├── fold7_train.txt ├── fold8_test.txt ├── fold8_train.txt ├── fold9_test.txt ├── fold9_train.txt └── w2v_200.txt ├── pair.py └── utils ├── __init__.pyc ├── prepare_data.py ├── prepare_data.pyc ├── tf_funcs.py └── tf_funcs.pyc /Ind-BiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/Ind-BiLSTM.py -------------------------------------------------------------------------------- /P_cause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/P_cause.py -------------------------------------------------------------------------------- /P_emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/P_emotion.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/README.md -------------------------------------------------------------------------------- /data_combine/all_data_pair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/all_data_pair.txt -------------------------------------------------------------------------------- /data_combine/clause_keywords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/clause_keywords.csv -------------------------------------------------------------------------------- /data_combine/clause_keywords_emotion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/clause_keywords_emotion.txt -------------------------------------------------------------------------------- /data_combine/fold10_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold10_test.txt -------------------------------------------------------------------------------- /data_combine/fold10_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold10_train.txt -------------------------------------------------------------------------------- /data_combine/fold1_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold1_test.txt -------------------------------------------------------------------------------- /data_combine/fold1_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold1_train.txt -------------------------------------------------------------------------------- /data_combine/fold2_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold2_test.txt -------------------------------------------------------------------------------- /data_combine/fold2_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold2_train.txt -------------------------------------------------------------------------------- /data_combine/fold3_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold3_test.txt -------------------------------------------------------------------------------- /data_combine/fold3_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold3_train.txt -------------------------------------------------------------------------------- /data_combine/fold4_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold4_test.txt -------------------------------------------------------------------------------- /data_combine/fold4_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold4_train.txt -------------------------------------------------------------------------------- /data_combine/fold5_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold5_test.txt -------------------------------------------------------------------------------- /data_combine/fold5_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold5_train.txt -------------------------------------------------------------------------------- /data_combine/fold6_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold6_test.txt -------------------------------------------------------------------------------- /data_combine/fold6_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold6_train.txt -------------------------------------------------------------------------------- /data_combine/fold7_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold7_test.txt -------------------------------------------------------------------------------- /data_combine/fold7_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold7_train.txt -------------------------------------------------------------------------------- /data_combine/fold8_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold8_test.txt -------------------------------------------------------------------------------- /data_combine/fold8_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold8_train.txt -------------------------------------------------------------------------------- /data_combine/fold9_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold9_test.txt -------------------------------------------------------------------------------- /data_combine/fold9_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/fold9_train.txt -------------------------------------------------------------------------------- /data_combine/w2v_200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/data_combine/w2v_200.txt -------------------------------------------------------------------------------- /pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/pair.py -------------------------------------------------------------------------------- /utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/utils/__init__.pyc -------------------------------------------------------------------------------- /utils/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/utils/prepare_data.py -------------------------------------------------------------------------------- /utils/prepare_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/utils/prepare_data.pyc -------------------------------------------------------------------------------- /utils/tf_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/utils/tf_funcs.py -------------------------------------------------------------------------------- /utils/tf_funcs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUSTM/ECPE/HEAD/utils/tf_funcs.pyc --------------------------------------------------------------------------------