├── README.md ├── config.py ├── data ├── face_images │ └── readme.md ├── test_info.md └── train_info.md ├── lib ├── __pycache__ │ ├── data_loader.cpython-35.pyc │ ├── network.cpython-35.pyc │ └── region_layer.cpython-35.pyc ├── data_loader.py ├── network.py ├── region_layer.py └── replace_region_layer.py ├── logs ├── mean_f1_score.png ├── region_layer.log ├── test_loss.png ├── train_loss.png ├── visualize.py └── without_region_layer.log ├── main.py └── pics ├── multi_label_loss.png ├── paper_result_1.png ├── paper_result_2.png └── train_loss.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/config.py -------------------------------------------------------------------------------- /data/face_images/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/data/face_images/readme.md -------------------------------------------------------------------------------- /data/test_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/data/test_info.md -------------------------------------------------------------------------------- /data/train_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/data/train_info.md -------------------------------------------------------------------------------- /lib/__pycache__/data_loader.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/__pycache__/data_loader.cpython-35.pyc -------------------------------------------------------------------------------- /lib/__pycache__/network.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/__pycache__/network.cpython-35.pyc -------------------------------------------------------------------------------- /lib/__pycache__/region_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/__pycache__/region_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/data_loader.py -------------------------------------------------------------------------------- /lib/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/network.py -------------------------------------------------------------------------------- /lib/region_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/region_layer.py -------------------------------------------------------------------------------- /lib/replace_region_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/lib/replace_region_layer.py -------------------------------------------------------------------------------- /logs/mean_f1_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/logs/mean_f1_score.png -------------------------------------------------------------------------------- /logs/region_layer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/logs/region_layer.log -------------------------------------------------------------------------------- /logs/test_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/logs/test_loss.png -------------------------------------------------------------------------------- /logs/train_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/logs/train_loss.png -------------------------------------------------------------------------------- /logs/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/logs/visualize.py -------------------------------------------------------------------------------- /logs/without_region_layer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/logs/without_region_layer.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/main.py -------------------------------------------------------------------------------- /pics/multi_label_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/pics/multi_label_loss.png -------------------------------------------------------------------------------- /pics/paper_result_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/pics/paper_result_1.png -------------------------------------------------------------------------------- /pics/paper_result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/pics/paper_result_2.png -------------------------------------------------------------------------------- /pics/train_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/DRML_pytorch/HEAD/pics/train_loss.png --------------------------------------------------------------------------------