├── .idea ├── GAN_SERVER.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── GAN ├── Predictor.py ├── __pycache__ │ ├── Predictor.cpython-36.pyc │ └── gan_tool.cpython-36.pyc ├── api_Server.py └── gan_tool.py ├── GAN_Server ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── LICENSE ├── README.md ├── README_CN.md ├── cache ├── CitysA2B.png ├── CitysB2A.png ├── Facades.png ├── Handbags.png └── Shoes.png ├── db.sqlite3 ├── docs ├── 1-inputs.png ├── 1-targets.png ├── 1-tensorflow.png ├── 1-torch.jpg ├── 418.png ├── 5-inputs.png ├── 5-targets.png ├── 5-tensorflow.png ├── 5-torch.jpg ├── 51-inputs.png ├── 51-targets.png ├── 51-tensorflow.png ├── 51-torch.jpg ├── 95-inputs.png ├── 95-targets.png ├── 95-tensorflow.png ├── 95-torch.jpg ├── ab.png ├── cityscapes.jpg ├── combine.png ├── edges2handbags.jpg ├── edges2shoes.jpg ├── examples.jpg ├── facades.jpg ├── maps.jpg ├── tensorboard-graph.png ├── tensorboard-image.png ├── tensorboard-scalar.png └── test-html.png ├── download_dataset.sh ├── gan_server_api ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── serializers.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── image ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── logo.png └── manage.py /.idea/GAN_SERVER.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/.idea/GAN_SERVER.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /GAN/Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN/Predictor.py -------------------------------------------------------------------------------- /GAN/__pycache__/Predictor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN/__pycache__/Predictor.cpython-36.pyc -------------------------------------------------------------------------------- /GAN/__pycache__/gan_tool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN/__pycache__/gan_tool.cpython-36.pyc -------------------------------------------------------------------------------- /GAN/api_Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN/api_Server.py -------------------------------------------------------------------------------- /GAN/gan_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN/gan_tool.py -------------------------------------------------------------------------------- /GAN_Server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/__init__.py -------------------------------------------------------------------------------- /GAN_Server/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /GAN_Server/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /GAN_Server/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /GAN_Server/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /GAN_Server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/settings.py -------------------------------------------------------------------------------- /GAN_Server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/urls.py -------------------------------------------------------------------------------- /GAN_Server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/GAN_Server/wsgi.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/README_CN.md -------------------------------------------------------------------------------- /cache/CitysA2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/cache/CitysA2B.png -------------------------------------------------------------------------------- /cache/CitysB2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/cache/CitysB2A.png -------------------------------------------------------------------------------- /cache/Facades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/cache/Facades.png -------------------------------------------------------------------------------- /cache/Handbags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/cache/Handbags.png -------------------------------------------------------------------------------- /cache/Shoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/cache/Shoes.png -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /docs/1-inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/1-inputs.png -------------------------------------------------------------------------------- /docs/1-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/1-targets.png -------------------------------------------------------------------------------- /docs/1-tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/1-tensorflow.png -------------------------------------------------------------------------------- /docs/1-torch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/1-torch.jpg -------------------------------------------------------------------------------- /docs/418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/418.png -------------------------------------------------------------------------------- /docs/5-inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/5-inputs.png -------------------------------------------------------------------------------- /docs/5-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/5-targets.png -------------------------------------------------------------------------------- /docs/5-tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/5-tensorflow.png -------------------------------------------------------------------------------- /docs/5-torch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/5-torch.jpg -------------------------------------------------------------------------------- /docs/51-inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/51-inputs.png -------------------------------------------------------------------------------- /docs/51-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/51-targets.png -------------------------------------------------------------------------------- /docs/51-tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/51-tensorflow.png -------------------------------------------------------------------------------- /docs/51-torch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/51-torch.jpg -------------------------------------------------------------------------------- /docs/95-inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/95-inputs.png -------------------------------------------------------------------------------- /docs/95-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/95-targets.png -------------------------------------------------------------------------------- /docs/95-tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/95-tensorflow.png -------------------------------------------------------------------------------- /docs/95-torch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/95-torch.jpg -------------------------------------------------------------------------------- /docs/ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/ab.png -------------------------------------------------------------------------------- /docs/cityscapes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/cityscapes.jpg -------------------------------------------------------------------------------- /docs/combine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/combine.png -------------------------------------------------------------------------------- /docs/edges2handbags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/edges2handbags.jpg -------------------------------------------------------------------------------- /docs/edges2shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/edges2shoes.jpg -------------------------------------------------------------------------------- /docs/examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/examples.jpg -------------------------------------------------------------------------------- /docs/facades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/facades.jpg -------------------------------------------------------------------------------- /docs/maps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/maps.jpg -------------------------------------------------------------------------------- /docs/tensorboard-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/tensorboard-graph.png -------------------------------------------------------------------------------- /docs/tensorboard-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/tensorboard-image.png -------------------------------------------------------------------------------- /docs/tensorboard-scalar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/tensorboard-scalar.png -------------------------------------------------------------------------------- /docs/test-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/docs/test-html.png -------------------------------------------------------------------------------- /download_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/download_dataset.sh -------------------------------------------------------------------------------- /gan_server_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gan_server_api/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/admin.py -------------------------------------------------------------------------------- /gan_server_api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/apps.py -------------------------------------------------------------------------------- /gan_server_api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gan_server_api/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /gan_server_api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/models.py -------------------------------------------------------------------------------- /gan_server_api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/serializers.py -------------------------------------------------------------------------------- /gan_server_api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/tests.py -------------------------------------------------------------------------------- /gan_server_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/urls.py -------------------------------------------------------------------------------- /gan_server_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/gan_server_api/views.py -------------------------------------------------------------------------------- /image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/1.png -------------------------------------------------------------------------------- /image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/2.png -------------------------------------------------------------------------------- /image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/3.png -------------------------------------------------------------------------------- /image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/4.png -------------------------------------------------------------------------------- /image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/5.png -------------------------------------------------------------------------------- /image/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/6.png -------------------------------------------------------------------------------- /image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/7.png -------------------------------------------------------------------------------- /image/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/8.png -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/image/logo.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luojie1024/HACK_GAN_img2img/HEAD/manage.py --------------------------------------------------------------------------------