├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── data └── README.txt ├── evaluation ├── README.md ├── __init__.py ├── check_fc8_labels.py ├── download_evaluation_data.py ├── eval_deception_score.py ├── evaluation_data │ ├── README.md │ └── eval_paths_700_val.json ├── feature_extractor │ ├── __init__.py │ ├── feature_extractor.py │ ├── features.py │ ├── image_getter.py │ ├── nets │ │ ├── __init__.py │ │ ├── nets_factory.py │ │ └── vgg.py │ └── preprocessing │ │ ├── __init__.py │ │ ├── preprocessing_factory.py │ │ └── vgg_preprocessing.py ├── logger.py └── run_deception_score_vgg_16_wikiart.sh ├── img_augm.py ├── main.py ├── model.py ├── models └── README.txt ├── module.py ├── ops.py ├── prepare_dataset.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/data/README.txt -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/check_fc8_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/check_fc8_labels.py -------------------------------------------------------------------------------- /evaluation/download_evaluation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/download_evaluation_data.py -------------------------------------------------------------------------------- /evaluation/eval_deception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/eval_deception_score.py -------------------------------------------------------------------------------- /evaluation/evaluation_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/evaluation_data/README.md -------------------------------------------------------------------------------- /evaluation/evaluation_data/eval_paths_700_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/evaluation_data/eval_paths_700_val.json -------------------------------------------------------------------------------- /evaluation/feature_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/feature_extractor/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/feature_extractor.py -------------------------------------------------------------------------------- /evaluation/feature_extractor/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/features.py -------------------------------------------------------------------------------- /evaluation/feature_extractor/image_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/image_getter.py -------------------------------------------------------------------------------- /evaluation/feature_extractor/nets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /evaluation/feature_extractor/nets/nets_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/nets/nets_factory.py -------------------------------------------------------------------------------- /evaluation/feature_extractor/nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/nets/vgg.py -------------------------------------------------------------------------------- /evaluation/feature_extractor/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /evaluation/feature_extractor/preprocessing/preprocessing_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/preprocessing/preprocessing_factory.py -------------------------------------------------------------------------------- /evaluation/feature_extractor/preprocessing/vgg_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/feature_extractor/preprocessing/vgg_preprocessing.py -------------------------------------------------------------------------------- /evaluation/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/logger.py -------------------------------------------------------------------------------- /evaluation/run_deception_score_vgg_16_wikiart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/evaluation/run_deception_score_vgg_16_wikiart.sh -------------------------------------------------------------------------------- /img_augm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/img_augm.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/model.py -------------------------------------------------------------------------------- /models/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/models/README.txt -------------------------------------------------------------------------------- /module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/module.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/ops.py -------------------------------------------------------------------------------- /prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/prepare_dataset.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CompVis/adaptive-style-transfer/HEAD/utils.py --------------------------------------------------------------------------------