├── LICENSE ├── README.md ├── data ├── CelebA │ └── list │ │ ├── test_full.txt │ │ ├── test_with_abstraction_full.txt │ │ ├── train_full.txt │ │ └── val_full.txt ├── demo │ ├── 1.jpg │ ├── 1_synthesized_image.jpg │ ├── 2.jpg │ ├── 2_synthesized_image.jpg │ ├── 3.jpg │ ├── 3_synthesized_image.jpg │ ├── list │ │ ├── demo.list │ │ └── demo_with_abstraction.list │ └── overview.png └── pretrained │ └── ResNet_mean.binaryproto ├── demo_dual_path.sh ├── demo_single_path.sh ├── evaluation ├── cal_accuracy.py ├── prediction_dual_path.py ├── prediction_single_path.py ├── test_dual_path_celeba.sh └── test_single_path_celeba.sh ├── models └── dual_path_parse_resnet │ ├── python_data_layer.py │ ├── solver.prototxt │ ├── train.sh │ └── train_val.prototxt └── outputs ├── deploy_dual.prototxt └── deploy_single.prototxt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/README.md -------------------------------------------------------------------------------- /data/CelebA/list/test_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/CelebA/list/test_full.txt -------------------------------------------------------------------------------- /data/CelebA/list/test_with_abstraction_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/CelebA/list/test_with_abstraction_full.txt -------------------------------------------------------------------------------- /data/CelebA/list/train_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/CelebA/list/train_full.txt -------------------------------------------------------------------------------- /data/CelebA/list/val_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/CelebA/list/val_full.txt -------------------------------------------------------------------------------- /data/demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/1.jpg -------------------------------------------------------------------------------- /data/demo/1_synthesized_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/1_synthesized_image.jpg -------------------------------------------------------------------------------- /data/demo/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/2.jpg -------------------------------------------------------------------------------- /data/demo/2_synthesized_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/2_synthesized_image.jpg -------------------------------------------------------------------------------- /data/demo/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/3.jpg -------------------------------------------------------------------------------- /data/demo/3_synthesized_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/3_synthesized_image.jpg -------------------------------------------------------------------------------- /data/demo/list/demo.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/list/demo.list -------------------------------------------------------------------------------- /data/demo/list/demo_with_abstraction.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/list/demo_with_abstraction.list -------------------------------------------------------------------------------- /data/demo/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/demo/overview.png -------------------------------------------------------------------------------- /data/pretrained/ResNet_mean.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/data/pretrained/ResNet_mean.binaryproto -------------------------------------------------------------------------------- /demo_dual_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/demo_dual_path.sh -------------------------------------------------------------------------------- /demo_single_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/demo_single_path.sh -------------------------------------------------------------------------------- /evaluation/cal_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/evaluation/cal_accuracy.py -------------------------------------------------------------------------------- /evaluation/prediction_dual_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/evaluation/prediction_dual_path.py -------------------------------------------------------------------------------- /evaluation/prediction_single_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/evaluation/prediction_single_path.py -------------------------------------------------------------------------------- /evaluation/test_dual_path_celeba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/evaluation/test_dual_path_celeba.sh -------------------------------------------------------------------------------- /evaluation/test_single_path_celeba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/evaluation/test_single_path_celeba.sh -------------------------------------------------------------------------------- /models/dual_path_parse_resnet/python_data_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/models/dual_path_parse_resnet/python_data_layer.py -------------------------------------------------------------------------------- /models/dual_path_parse_resnet/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/models/dual_path_parse_resnet/solver.prototxt -------------------------------------------------------------------------------- /models/dual_path_parse_resnet/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/models/dual_path_parse_resnet/train.sh -------------------------------------------------------------------------------- /models/dual_path_parse_resnet/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/models/dual_path_parse_resnet/train_val.prototxt -------------------------------------------------------------------------------- /outputs/deploy_dual.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/outputs/deploy_dual.prototxt -------------------------------------------------------------------------------- /outputs/deploy_single.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/FaceAttribute-FAN/HEAD/outputs/deploy_single.prototxt --------------------------------------------------------------------------------