├── .github ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── dog1.png └── method.png ├── dataset ├── inception_stats_256.pt └── queries.csv ├── demo.ipynb ├── eval.py ├── exp_configs └── final.yaml ├── global.yaml ├── install.sh ├── requirements.txt ├── src ├── flexit_editer.py └── vqc_core.py ├── transform_dataset.py └── utils ├── inception.py ├── io.py ├── load_config.py ├── submit.py └── torch_utils.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/README.md -------------------------------------------------------------------------------- /assets/dog1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/assets/dog1.png -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/assets/method.png -------------------------------------------------------------------------------- /dataset/inception_stats_256.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/dataset/inception_stats_256.pt -------------------------------------------------------------------------------- /dataset/queries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/dataset/queries.csv -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/demo.ipynb -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/eval.py -------------------------------------------------------------------------------- /exp_configs/final.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/exp_configs/final.yaml -------------------------------------------------------------------------------- /global.yaml: -------------------------------------------------------------------------------- 1 | IMAGENET_ROOT: "/datasets01/imagenet_full_size/061417/val/" -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/flexit_editer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/src/flexit_editer.py -------------------------------------------------------------------------------- /src/vqc_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/src/vqc_core.py -------------------------------------------------------------------------------- /transform_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/transform_dataset.py -------------------------------------------------------------------------------- /utils/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/utils/inception.py -------------------------------------------------------------------------------- /utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/utils/io.py -------------------------------------------------------------------------------- /utils/load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/utils/load_config.py -------------------------------------------------------------------------------- /utils/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/utils/submit.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/SemanticImageTranslation/HEAD/utils/torch_utils.py --------------------------------------------------------------------------------