├── .gitignore ├── LICENSE ├── README.md ├── SyncControlNet ├── LICENSE ├── assets │ ├── canny_city_512x3072.png │ ├── qrcode_chess.png │ └── qrcode_hello.png ├── pipeline_sync_controlnet.py └── run_sync_controlnet.ipynb ├── docs ├── demo │ └── sync_demo.gif └── figures │ ├── gradio_demo.png │ └── syncdiffusion_diff_weights.png ├── environment.yaml ├── eval_code ├── README.md ├── crop_panorama.py ├── eval_clip_score.py ├── eval_intra_lpips.py └── eval_style_loss.py ├── gradio_syncdiffusion.py ├── notebooks └── syncdiffusion_demo.ipynb ├── requirements.txt ├── sample_syncdiffusion.py ├── sample_syncdiffusion.sh └── syncdiffusion ├── syncdiffusion_model.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | */__pycache__ 2 | results 3 | archive -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/README.md -------------------------------------------------------------------------------- /SyncControlNet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/SyncControlNet/LICENSE -------------------------------------------------------------------------------- /SyncControlNet/assets/canny_city_512x3072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/SyncControlNet/assets/canny_city_512x3072.png -------------------------------------------------------------------------------- /SyncControlNet/assets/qrcode_chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/SyncControlNet/assets/qrcode_chess.png -------------------------------------------------------------------------------- /SyncControlNet/assets/qrcode_hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/SyncControlNet/assets/qrcode_hello.png -------------------------------------------------------------------------------- /SyncControlNet/pipeline_sync_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/SyncControlNet/pipeline_sync_controlnet.py -------------------------------------------------------------------------------- /SyncControlNet/run_sync_controlnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/SyncControlNet/run_sync_controlnet.ipynb -------------------------------------------------------------------------------- /docs/demo/sync_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/docs/demo/sync_demo.gif -------------------------------------------------------------------------------- /docs/figures/gradio_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/docs/figures/gradio_demo.png -------------------------------------------------------------------------------- /docs/figures/syncdiffusion_diff_weights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/docs/figures/syncdiffusion_diff_weights.png -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/environment.yaml -------------------------------------------------------------------------------- /eval_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/eval_code/README.md -------------------------------------------------------------------------------- /eval_code/crop_panorama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/eval_code/crop_panorama.py -------------------------------------------------------------------------------- /eval_code/eval_clip_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/eval_code/eval_clip_score.py -------------------------------------------------------------------------------- /eval_code/eval_intra_lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/eval_code/eval_intra_lpips.py -------------------------------------------------------------------------------- /eval_code/eval_style_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/eval_code/eval_style_loss.py -------------------------------------------------------------------------------- /gradio_syncdiffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/gradio_syncdiffusion.py -------------------------------------------------------------------------------- /notebooks/syncdiffusion_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/notebooks/syncdiffusion_demo.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_syncdiffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/sample_syncdiffusion.py -------------------------------------------------------------------------------- /sample_syncdiffusion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/sample_syncdiffusion.sh -------------------------------------------------------------------------------- /syncdiffusion/syncdiffusion_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/syncdiffusion/syncdiffusion_model.py -------------------------------------------------------------------------------- /syncdiffusion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAIST-Visual-AI-Group/SyncDiffusion/HEAD/syncdiffusion/utils.py --------------------------------------------------------------------------------