├── .gitignore ├── .idea ├── ACSCP_cGAN.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── IMG_2_A.png ├── IMG_2_A_real.png ├── LICENSE ├── README.md ├── checkpoints └── gan_mp_1_240 │ ├── checkpoint │ ├── mp_gan.model-35000.data-00000-of-00001 │ ├── mp_gan.model-35000.index │ └── mp_gan.model-35000.meta ├── data ├── data_gt │ ├── test_gt │ │ ├── IMG_1_A.npy │ │ ├── IMG_1_B.npy │ │ ├── IMG_2_A.npy │ │ └── IMG_2_B.npy │ └── train_gt │ │ ├── IMG_1_A.npy │ │ ├── IMG_1_B.npy │ │ ├── IMG_2_A.npy │ │ └── IMG_2_B.npy └── data_im │ ├── test_im │ ├── IMG_1_A.jpg │ ├── IMG_1_B.jpg │ ├── IMG_2_A.jpg │ └── IMG_2_B.jpg │ └── train_im │ ├── IMG_1_A.jpg │ ├── IMG_1_B.jpg │ ├── IMG_2_A.jpg │ └── IMG_2_B.jpg ├── data_maker ├── README.html ├── README.md ├── step1 │ ├── UAVData │ │ ├── test_data │ │ │ └── test_img │ │ │ │ └── IMG_TE_1.jpg │ │ └── train_data │ │ │ └── train_img │ │ │ └── IMG_TR_1.jpg │ └── data_collect.py ├── step2 │ └── annotation │ │ ├── Image_data │ │ ├── IMG_1.jpg │ │ ├── IMG_10.jpg │ │ ├── IMG_2.jpg │ │ ├── IMG_3.jpg │ │ ├── IMG_4.jpg │ │ ├── IMG_5.jpg │ │ ├── IMG_6.jpg │ │ ├── IMG_7.jpg │ │ ├── IMG_8.jpg │ │ └── IMG_9.jpg │ │ ├── pro_check │ │ ├── data_marker.fig │ │ ├── data_marker.m │ │ └── default.jpg │ │ └── pro_mark0 │ │ ├── data_marker.fig │ │ ├── data_marker.m │ │ └── default.jpg └── step3 │ ├── UAVData │ └── train_data │ │ ├── ground_truth │ │ └── IMG_1.mat │ │ ├── train_gt │ │ └── IMG_1.mat │ │ ├── train_img │ │ └── IMG_1.jpg │ │ └── train_npy │ │ └── IMG_1.npy │ ├── acscp.m │ ├── map_mcnn.m │ ├── mat2npy.py │ └── searchhead.m ├── doc ├── Crowd Counting via Adversarial Cross-Scale Consistency Pursuit.pdf ├── Structured Inhomogeneous Density Map Learningfor Crowd Counting.pdf ├── architecture.png ├── comparision.png ├── directory_tree.txt ├── formulation.png ├── generator.png ├── lambda_c.png ├── loss.png ├── loss_result.png ├── motivations.png ├── pathch_errors.png ├── result_ShanghaiTech.png └── tensorboard.png ├── lib_ops ├── __init__.py ├── ops.py └── utils.py ├── main.py ├── model.py ├── product.py ├── product_model ├── g_large_model_412 │ ├── checkpoint │ ├── g_large.ckpt.data-00000-of-00001 │ ├── g_large.ckpt.index │ └── g_large.ckpt.meta └── g_large_model_414 │ ├── checkpoint │ ├── g_large.ckpt.data-00000-of-00001 │ ├── g_large.ckpt.index │ └── g_large.ckpt.meta ├── release └── version1.0.0.tar.gz ├── requirements.txt ├── vgg2_model ├── checkpoint ├── vgg_2.ckpt.data-00000-of-00001 ├── vgg_2.ckpt.index └── vgg_2.ckpt.meta └── vgg_feature.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/ACSCP_cGAN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/.idea/ACSCP_cGAN.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /IMG_2_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/IMG_2_A.png -------------------------------------------------------------------------------- /IMG_2_A_real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/IMG_2_A_real.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/gan_mp_1_240/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/checkpoints/gan_mp_1_240/checkpoint -------------------------------------------------------------------------------- /checkpoints/gan_mp_1_240/mp_gan.model-35000.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/checkpoints/gan_mp_1_240/mp_gan.model-35000.data-00000-of-00001 -------------------------------------------------------------------------------- /checkpoints/gan_mp_1_240/mp_gan.model-35000.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/checkpoints/gan_mp_1_240/mp_gan.model-35000.index -------------------------------------------------------------------------------- /checkpoints/gan_mp_1_240/mp_gan.model-35000.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/checkpoints/gan_mp_1_240/mp_gan.model-35000.meta -------------------------------------------------------------------------------- /data/data_gt/test_gt/IMG_1_A.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/test_gt/IMG_1_A.npy -------------------------------------------------------------------------------- /data/data_gt/test_gt/IMG_1_B.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/test_gt/IMG_1_B.npy -------------------------------------------------------------------------------- /data/data_gt/test_gt/IMG_2_A.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/test_gt/IMG_2_A.npy -------------------------------------------------------------------------------- /data/data_gt/test_gt/IMG_2_B.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/test_gt/IMG_2_B.npy -------------------------------------------------------------------------------- /data/data_gt/train_gt/IMG_1_A.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/train_gt/IMG_1_A.npy -------------------------------------------------------------------------------- /data/data_gt/train_gt/IMG_1_B.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/train_gt/IMG_1_B.npy -------------------------------------------------------------------------------- /data/data_gt/train_gt/IMG_2_A.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/train_gt/IMG_2_A.npy -------------------------------------------------------------------------------- /data/data_gt/train_gt/IMG_2_B.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_gt/train_gt/IMG_2_B.npy -------------------------------------------------------------------------------- /data/data_im/test_im/IMG_1_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/test_im/IMG_1_A.jpg -------------------------------------------------------------------------------- /data/data_im/test_im/IMG_1_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/test_im/IMG_1_B.jpg -------------------------------------------------------------------------------- /data/data_im/test_im/IMG_2_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/test_im/IMG_2_A.jpg -------------------------------------------------------------------------------- /data/data_im/test_im/IMG_2_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/test_im/IMG_2_B.jpg -------------------------------------------------------------------------------- /data/data_im/train_im/IMG_1_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/train_im/IMG_1_A.jpg -------------------------------------------------------------------------------- /data/data_im/train_im/IMG_1_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/train_im/IMG_1_B.jpg -------------------------------------------------------------------------------- /data/data_im/train_im/IMG_2_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/train_im/IMG_2_A.jpg -------------------------------------------------------------------------------- /data/data_im/train_im/IMG_2_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data/data_im/train_im/IMG_2_B.jpg -------------------------------------------------------------------------------- /data_maker/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/README.html -------------------------------------------------------------------------------- /data_maker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/README.md -------------------------------------------------------------------------------- /data_maker/step1/UAVData/test_data/test_img/IMG_TE_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step1/UAVData/test_data/test_img/IMG_TE_1.jpg -------------------------------------------------------------------------------- /data_maker/step1/UAVData/train_data/train_img/IMG_TR_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step1/UAVData/train_data/train_img/IMG_TR_1.jpg -------------------------------------------------------------------------------- /data_maker/step1/data_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step1/data_collect.py -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_1.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_10.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_2.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_3.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_4.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_5.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_6.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_7.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_8.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/Image_data/IMG_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/Image_data/IMG_9.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/pro_check/data_marker.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/pro_check/data_marker.fig -------------------------------------------------------------------------------- /data_maker/step2/annotation/pro_check/data_marker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/pro_check/data_marker.m -------------------------------------------------------------------------------- /data_maker/step2/annotation/pro_check/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/pro_check/default.jpg -------------------------------------------------------------------------------- /data_maker/step2/annotation/pro_mark0/data_marker.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/pro_mark0/data_marker.fig -------------------------------------------------------------------------------- /data_maker/step2/annotation/pro_mark0/data_marker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/pro_mark0/data_marker.m -------------------------------------------------------------------------------- /data_maker/step2/annotation/pro_mark0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step2/annotation/pro_mark0/default.jpg -------------------------------------------------------------------------------- /data_maker/step3/UAVData/train_data/ground_truth/IMG_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/UAVData/train_data/ground_truth/IMG_1.mat -------------------------------------------------------------------------------- /data_maker/step3/UAVData/train_data/train_gt/IMG_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/UAVData/train_data/train_gt/IMG_1.mat -------------------------------------------------------------------------------- /data_maker/step3/UAVData/train_data/train_img/IMG_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/UAVData/train_data/train_img/IMG_1.jpg -------------------------------------------------------------------------------- /data_maker/step3/UAVData/train_data/train_npy/IMG_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/UAVData/train_data/train_npy/IMG_1.npy -------------------------------------------------------------------------------- /data_maker/step3/acscp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/acscp.m -------------------------------------------------------------------------------- /data_maker/step3/map_mcnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/map_mcnn.m -------------------------------------------------------------------------------- /data_maker/step3/mat2npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/mat2npy.py -------------------------------------------------------------------------------- /data_maker/step3/searchhead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/data_maker/step3/searchhead.m -------------------------------------------------------------------------------- /doc/Crowd Counting via Adversarial Cross-Scale Consistency Pursuit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/Crowd Counting via Adversarial Cross-Scale Consistency Pursuit.pdf -------------------------------------------------------------------------------- /doc/Structured Inhomogeneous Density Map Learningfor Crowd Counting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/Structured Inhomogeneous Density Map Learningfor Crowd Counting.pdf -------------------------------------------------------------------------------- /doc/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/architecture.png -------------------------------------------------------------------------------- /doc/comparision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/comparision.png -------------------------------------------------------------------------------- /doc/directory_tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/directory_tree.txt -------------------------------------------------------------------------------- /doc/formulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/formulation.png -------------------------------------------------------------------------------- /doc/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/generator.png -------------------------------------------------------------------------------- /doc/lambda_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/lambda_c.png -------------------------------------------------------------------------------- /doc/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/loss.png -------------------------------------------------------------------------------- /doc/loss_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/loss_result.png -------------------------------------------------------------------------------- /doc/motivations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/motivations.png -------------------------------------------------------------------------------- /doc/pathch_errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/pathch_errors.png -------------------------------------------------------------------------------- /doc/result_ShanghaiTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/result_ShanghaiTech.png -------------------------------------------------------------------------------- /doc/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/doc/tensorboard.png -------------------------------------------------------------------------------- /lib_ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib_ops/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/lib_ops/ops.py -------------------------------------------------------------------------------- /lib_ops/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/lib_ops/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/model.py -------------------------------------------------------------------------------- /product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product.py -------------------------------------------------------------------------------- /product_model/g_large_model_412/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_412/checkpoint -------------------------------------------------------------------------------- /product_model/g_large_model_412/g_large.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_412/g_large.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /product_model/g_large_model_412/g_large.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_412/g_large.ckpt.index -------------------------------------------------------------------------------- /product_model/g_large_model_412/g_large.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_412/g_large.ckpt.meta -------------------------------------------------------------------------------- /product_model/g_large_model_414/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_414/checkpoint -------------------------------------------------------------------------------- /product_model/g_large_model_414/g_large.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_414/g_large.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /product_model/g_large_model_414/g_large.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_414/g_large.ckpt.index -------------------------------------------------------------------------------- /product_model/g_large_model_414/g_large.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/product_model/g_large_model_414/g_large.ckpt.meta -------------------------------------------------------------------------------- /release/version1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/release/version1.0.0.tar.gz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/requirements.txt -------------------------------------------------------------------------------- /vgg2_model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/vgg2_model/checkpoint -------------------------------------------------------------------------------- /vgg2_model/vgg_2.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/vgg2_model/vgg_2.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /vgg2_model/vgg_2.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/vgg2_model/vgg_2.ckpt.index -------------------------------------------------------------------------------- /vgg2_model/vgg_2.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/vgg2_model/vgg_2.ckpt.meta -------------------------------------------------------------------------------- /vgg_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ling-Bao/ACSCP_cGAN/HEAD/vgg_feature.py --------------------------------------------------------------------------------