├── .idea ├── .gitignore ├── DeepFashion_Try_On.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── ACGPN_inference ├── checkpoints │ └── readme.txt ├── data │ ├── aligned_dataset.py │ ├── base_data_loader.py │ ├── base_dataset.py │ ├── custom_dataset_data_loader.py │ ├── data_loader.py │ └── image_folder.py ├── grid_sample.py ├── models │ ├── base_model.py │ ├── models.py │ ├── networks.py │ └── pix2pixHD_model.py ├── options │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── test.py ├── tps_grid_gen.py └── util │ ├── image_pool.py │ └── util.py ├── ACGPN_train ├── data │ ├── __init__.py │ ├── aligned_dataset.py │ ├── base_data_loader.py │ ├── base_dataset.py │ ├── custom_dataset_data_loader.py │ ├── data_loader.py │ └── image_folder.py ├── grid_sample.py ├── models │ ├── __init__.py │ ├── base_model.py │ ├── mnist_model.py │ ├── mnist_train.py │ ├── models.py │ ├── networks.py │ ├── networks_backup.py │ ├── pix2pixHD_model.py │ └── test.py ├── options │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── base_options.cpython-37.pyc │ │ └── train_options.cpython-37.pyc │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── sample │ └── 000154_0.jpg ├── tps_grid_gen.py ├── train.py └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── util.cpython-37.pyc │ ├── image_pool.py │ └── util.py ├── Data_preprocessing └── readme.txt ├── README.md └── images ├── criterion.png ├── difficulty.png ├── failure.png ├── formula.png └── tryon.png /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /.idea/DeepFashion_Try_On.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/.idea/DeepFashion_Try_On.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /ACGPN_inference/checkpoints/readme.txt: -------------------------------------------------------------------------------- 1 | checkpoints here. -------------------------------------------------------------------------------- /ACGPN_inference/data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/data/aligned_dataset.py -------------------------------------------------------------------------------- /ACGPN_inference/data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/data/base_data_loader.py -------------------------------------------------------------------------------- /ACGPN_inference/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/data/base_dataset.py -------------------------------------------------------------------------------- /ACGPN_inference/data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /ACGPN_inference/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/data/data_loader.py -------------------------------------------------------------------------------- /ACGPN_inference/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/data/image_folder.py -------------------------------------------------------------------------------- /ACGPN_inference/grid_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/grid_sample.py -------------------------------------------------------------------------------- /ACGPN_inference/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/models/base_model.py -------------------------------------------------------------------------------- /ACGPN_inference/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/models/models.py -------------------------------------------------------------------------------- /ACGPN_inference/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/models/networks.py -------------------------------------------------------------------------------- /ACGPN_inference/models/pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/models/pix2pixHD_model.py -------------------------------------------------------------------------------- /ACGPN_inference/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/options/base_options.py -------------------------------------------------------------------------------- /ACGPN_inference/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/options/test_options.py -------------------------------------------------------------------------------- /ACGPN_inference/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/options/train_options.py -------------------------------------------------------------------------------- /ACGPN_inference/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/test.py -------------------------------------------------------------------------------- /ACGPN_inference/tps_grid_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/tps_grid_gen.py -------------------------------------------------------------------------------- /ACGPN_inference/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/util/image_pool.py -------------------------------------------------------------------------------- /ACGPN_inference/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_inference/util/util.py -------------------------------------------------------------------------------- /ACGPN_train/data/__init__.py: -------------------------------------------------------------------------------- 1 | # data_init -------------------------------------------------------------------------------- /ACGPN_train/data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/data/aligned_dataset.py -------------------------------------------------------------------------------- /ACGPN_train/data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/data/base_data_loader.py -------------------------------------------------------------------------------- /ACGPN_train/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/data/base_dataset.py -------------------------------------------------------------------------------- /ACGPN_train/data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /ACGPN_train/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/data/data_loader.py -------------------------------------------------------------------------------- /ACGPN_train/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/data/image_folder.py -------------------------------------------------------------------------------- /ACGPN_train/grid_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/grid_sample.py -------------------------------------------------------------------------------- /ACGPN_train/models/__init__.py: -------------------------------------------------------------------------------- 1 | # model_init -------------------------------------------------------------------------------- /ACGPN_train/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/base_model.py -------------------------------------------------------------------------------- /ACGPN_train/models/mnist_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/mnist_model.py -------------------------------------------------------------------------------- /ACGPN_train/models/mnist_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/mnist_train.py -------------------------------------------------------------------------------- /ACGPN_train/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/models.py -------------------------------------------------------------------------------- /ACGPN_train/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/networks.py -------------------------------------------------------------------------------- /ACGPN_train/models/networks_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/networks_backup.py -------------------------------------------------------------------------------- /ACGPN_train/models/pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/pix2pixHD_model.py -------------------------------------------------------------------------------- /ACGPN_train/models/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/models/test.py -------------------------------------------------------------------------------- /ACGPN_train/options/__init__.py: -------------------------------------------------------------------------------- 1 | # options_init -------------------------------------------------------------------------------- /ACGPN_train/options/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/options/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ACGPN_train/options/__pycache__/base_options.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/options/__pycache__/base_options.cpython-37.pyc -------------------------------------------------------------------------------- /ACGPN_train/options/__pycache__/train_options.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/options/__pycache__/train_options.cpython-37.pyc -------------------------------------------------------------------------------- /ACGPN_train/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/options/base_options.py -------------------------------------------------------------------------------- /ACGPN_train/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/options/test_options.py -------------------------------------------------------------------------------- /ACGPN_train/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/options/train_options.py -------------------------------------------------------------------------------- /ACGPN_train/sample/000154_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/sample/000154_0.jpg -------------------------------------------------------------------------------- /ACGPN_train/tps_grid_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/tps_grid_gen.py -------------------------------------------------------------------------------- /ACGPN_train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/train.py -------------------------------------------------------------------------------- /ACGPN_train/util/__init__.py: -------------------------------------------------------------------------------- 1 | # util_init -------------------------------------------------------------------------------- /ACGPN_train/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ACGPN_train/util/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/util/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /ACGPN_train/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/util/image_pool.py -------------------------------------------------------------------------------- /ACGPN_train/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/ACGPN_train/util/util.py -------------------------------------------------------------------------------- /Data_preprocessing/readme.txt: -------------------------------------------------------------------------------- 1 | Data should be put here. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/README.md -------------------------------------------------------------------------------- /images/criterion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/images/criterion.png -------------------------------------------------------------------------------- /images/difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/images/difficulty.png -------------------------------------------------------------------------------- /images/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/images/failure.png -------------------------------------------------------------------------------- /images/formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/images/formula.png -------------------------------------------------------------------------------- /images/tryon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchablenorms/DeepFashion_Try_On/HEAD/images/tryon.png --------------------------------------------------------------------------------