├── .gitignore ├── Anime2Clothing_DEMO.ipynb ├── LICENSE ├── README.md ├── dataset.py ├── discriminator ├── discriminator_model.py └── discriminator_parts.py ├── generator ├── base_model.py ├── networks.py ├── resnet │ └── resnet_model.py └── unet │ ├── unet_model.py │ └── unet_parts.py ├── imgs └── purpose_of_paper.png ├── models └── pretrained_unet_20200122.pth ├── options ├── base_options.py ├── test_options.py └── train_options.py ├── pix2pix_pro.py ├── test.py ├── train.py └── util ├── __init__.py ├── html.py ├── image_pool.py ├── util.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/.gitignore -------------------------------------------------------------------------------- /Anime2Clothing_DEMO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/Anime2Clothing_DEMO.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/dataset.py -------------------------------------------------------------------------------- /discriminator/discriminator_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/discriminator/discriminator_model.py -------------------------------------------------------------------------------- /discriminator/discriminator_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/discriminator/discriminator_parts.py -------------------------------------------------------------------------------- /generator/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/generator/base_model.py -------------------------------------------------------------------------------- /generator/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/generator/networks.py -------------------------------------------------------------------------------- /generator/resnet/resnet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/generator/resnet/resnet_model.py -------------------------------------------------------------------------------- /generator/unet/unet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/generator/unet/unet_model.py -------------------------------------------------------------------------------- /generator/unet/unet_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/generator/unet/unet_parts.py -------------------------------------------------------------------------------- /imgs/purpose_of_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/imgs/purpose_of_paper.png -------------------------------------------------------------------------------- /models/pretrained_unet_20200122.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/models/pretrained_unet_20200122.pth -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/options/train_options.py -------------------------------------------------------------------------------- /pix2pix_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/pix2pix_pro.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tan5o/anime2clothing/HEAD/util/visualizer.py --------------------------------------------------------------------------------