├── .gitignore ├── README.md ├── data └── readme.txt ├── dataloader.py ├── exec_iemocap.sh ├── exec_meld.sh ├── fig └── SDT.jpg ├── model.py ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/README.md -------------------------------------------------------------------------------- /data/readme.txt: -------------------------------------------------------------------------------- 1 | Emotion datasets. -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/dataloader.py -------------------------------------------------------------------------------- /exec_iemocap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/exec_iemocap.sh -------------------------------------------------------------------------------- /exec_meld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/exec_meld.sh -------------------------------------------------------------------------------- /fig/SDT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/fig/SDT.jpg -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/butterfliesss/SDT/HEAD/train.py --------------------------------------------------------------------------------