├── IEMOCAP ├── dev_data.json ├── name_pool ├── test_data.json └── train_data.json ├── MELD ├── dev_sent_emo.csv ├── test_sent_emo.csv └── train_sent_emo.csv ├── README.md ├── clean.sh ├── config.py ├── data_process.py ├── emorynlp ├── emotion-detection-dev.json ├── emotion-detection-trn.json └── emotion-detection-tst.json ├── friends_transcript.json ├── model.py ├── plots ├── plot.py ├── plot_dif.py └── plot_selection.py ├── relations ├── requirements.txt ├── spcl.png ├── spcl_loss.py ├── speakers ├── speakers_desc ├── train.py └── util_methods.py /IEMOCAP/dev_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/IEMOCAP/dev_data.json -------------------------------------------------------------------------------- /IEMOCAP/name_pool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/IEMOCAP/name_pool -------------------------------------------------------------------------------- /IEMOCAP/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/IEMOCAP/test_data.json -------------------------------------------------------------------------------- /IEMOCAP/train_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/IEMOCAP/train_data.json -------------------------------------------------------------------------------- /MELD/dev_sent_emo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/MELD/dev_sent_emo.csv -------------------------------------------------------------------------------- /MELD/test_sent_emo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/MELD/test_sent_emo.csv -------------------------------------------------------------------------------- /MELD/train_sent_emo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/MELD/train_sent_emo.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | rm -r temp/* -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/config.py -------------------------------------------------------------------------------- /data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/data_process.py -------------------------------------------------------------------------------- /emorynlp/emotion-detection-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/emorynlp/emotion-detection-dev.json -------------------------------------------------------------------------------- /emorynlp/emotion-detection-trn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/emorynlp/emotion-detection-trn.json -------------------------------------------------------------------------------- /emorynlp/emotion-detection-tst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/emorynlp/emotion-detection-tst.json -------------------------------------------------------------------------------- /friends_transcript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/friends_transcript.json -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/model.py -------------------------------------------------------------------------------- /plots/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/plots/plot.py -------------------------------------------------------------------------------- /plots/plot_dif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/plots/plot_dif.py -------------------------------------------------------------------------------- /plots/plot_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/plots/plot_selection.py -------------------------------------------------------------------------------- /relations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/relations -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/requirements.txt -------------------------------------------------------------------------------- /spcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/spcl.png -------------------------------------------------------------------------------- /spcl_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/spcl_loss.py -------------------------------------------------------------------------------- /speakers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/speakers -------------------------------------------------------------------------------- /speakers_desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/speakers_desc -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/train.py -------------------------------------------------------------------------------- /util_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caskcsg/SPCL/HEAD/util_methods.py --------------------------------------------------------------------------------