├── README.MD ├── configs ├── DLPCNN.conf ├── DLPCNNBN.conf └── baseDCNN.conf ├── experiments.png ├── losses ├── DLPCNNLoss.py ├── __init__.py └── baseDCNNLoss.py ├── networks ├── AlexNet.py ├── DLPCNN.py ├── DLPCNNBN.py ├── DLPCNNPretrained.py ├── ResNet101.py ├── ResNet18.py ├── ResNet34.py ├── ResNet50.py ├── VGG19.py ├── __init__.py ├── baseDCNN.py ├── baseDCNNAdaptiveDropout.py ├── baseDCNNDropout.py └── layers.py ├── ops.py ├── requirements.txt ├── run.py ├── run.sh └── utils.py /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/README.MD -------------------------------------------------------------------------------- /configs/DLPCNN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/configs/DLPCNN.conf -------------------------------------------------------------------------------- /configs/DLPCNNBN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/configs/DLPCNNBN.conf -------------------------------------------------------------------------------- /configs/baseDCNN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/configs/baseDCNN.conf -------------------------------------------------------------------------------- /experiments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/experiments.png -------------------------------------------------------------------------------- /losses/DLPCNNLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/losses/DLPCNNLoss.py -------------------------------------------------------------------------------- /losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/losses/__init__.py -------------------------------------------------------------------------------- /losses/baseDCNNLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/losses/baseDCNNLoss.py -------------------------------------------------------------------------------- /networks/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/AlexNet.py -------------------------------------------------------------------------------- /networks/DLPCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/DLPCNN.py -------------------------------------------------------------------------------- /networks/DLPCNNBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/DLPCNNBN.py -------------------------------------------------------------------------------- /networks/DLPCNNPretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/DLPCNNPretrained.py -------------------------------------------------------------------------------- /networks/ResNet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/ResNet101.py -------------------------------------------------------------------------------- /networks/ResNet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/ResNet18.py -------------------------------------------------------------------------------- /networks/ResNet34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/ResNet34.py -------------------------------------------------------------------------------- /networks/ResNet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/ResNet50.py -------------------------------------------------------------------------------- /networks/VGG19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/VGG19.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/__init__.py -------------------------------------------------------------------------------- /networks/baseDCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/baseDCNN.py -------------------------------------------------------------------------------- /networks/baseDCNNAdaptiveDropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/baseDCNNAdaptiveDropout.py -------------------------------------------------------------------------------- /networks/baseDCNNDropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/baseDCNNDropout.py -------------------------------------------------------------------------------- /networks/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/networks/layers.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/ops.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/run.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | CUDA_VISIBLE_DEVICES=3 python run.py --config_name DLPCNN -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChineseYjh/RAF-DB-baselines/HEAD/utils.py --------------------------------------------------------------------------------