├── .gitignore ├── CTMAM.png ├── README.md ├── data_loader.py ├── handleIEMOCAP.py ├── lct.py ├── models.py ├── path.py ├── process_Emodb.py ├── process_IEMOCAP.py ├── requirements.txt ├── spec_augment_pytorch.py ├── train_Emodb.py └── train_IEMOCAP.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkl -------------------------------------------------------------------------------- /CTMAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/CTMAM.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/data_loader.py -------------------------------------------------------------------------------- /handleIEMOCAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/handleIEMOCAP.py -------------------------------------------------------------------------------- /lct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/lct.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/models.py -------------------------------------------------------------------------------- /path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/path.py -------------------------------------------------------------------------------- /process_Emodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/process_Emodb.py -------------------------------------------------------------------------------- /process_IEMOCAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/process_IEMOCAP.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/requirements.txt -------------------------------------------------------------------------------- /spec_augment_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/spec_augment_pytorch.py -------------------------------------------------------------------------------- /train_Emodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/train_Emodb.py -------------------------------------------------------------------------------- /train_IEMOCAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCNU-RISLAB/CNN-Transformer-and-Multidimensional-Attention-Mechanism/HEAD/train_IEMOCAP.py --------------------------------------------------------------------------------