├── .gitignore ├── LICENSE ├── README.md ├── caffe2pytorchvgg16.py ├── data.py ├── download_places365.sh ├── download_pretrained_vgg16.sh ├── figures ├── 600000.png ├── paper_architecture.png └── paper_results_overview.png ├── frechet_inception_distance.py ├── lossfunction.py ├── main.py ├── misc.py ├── model_wrapper.py ├── models.py ├── requirements.txt ├── vgg_16_inference.py └── vgg_16_train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/README.md -------------------------------------------------------------------------------- /caffe2pytorchvgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/caffe2pytorchvgg16.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/data.py -------------------------------------------------------------------------------- /download_places365.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/download_places365.sh -------------------------------------------------------------------------------- /download_pretrained_vgg16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/download_pretrained_vgg16.sh -------------------------------------------------------------------------------- /figures/600000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/figures/600000.png -------------------------------------------------------------------------------- /figures/paper_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/figures/paper_architecture.png -------------------------------------------------------------------------------- /figures/paper_results_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/figures/paper_results_overview.png -------------------------------------------------------------------------------- /frechet_inception_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/frechet_inception_distance.py -------------------------------------------------------------------------------- /lossfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/lossfunction.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/main.py -------------------------------------------------------------------------------- /misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/misc.py -------------------------------------------------------------------------------- /model_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/model_wrapper.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/requirements.txt -------------------------------------------------------------------------------- /vgg_16_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/vgg_16_inference.py -------------------------------------------------------------------------------- /vgg_16_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristophReich1996/Semantic_Pyramid_for_Image_Generation/HEAD/vgg_16_train.py --------------------------------------------------------------------------------