├── .gitignore ├── LICENSE ├── README.md ├── cnn2d.py ├── dataload.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/README.md -------------------------------------------------------------------------------- /cnn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/cnn2d.py -------------------------------------------------------------------------------- /dataload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/dataload.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hbbbbbby/EmotionRecognition_2Dcnn-lstm/HEAD/requirements.txt --------------------------------------------------------------------------------