├── LICENSE ├── README.md ├── assets ├── a-container-0038.jpg ├── a-dog-on-top-of-sks-container-0023.jpg ├── a-red-sks-container-0021.jpg ├── photo-of-a-sks-container-0018.jpg ├── photo-of-a-sks-container-on-the-beach-0017.jpg └── photo-of-a-sks-container-on-the-moon-0016.jpg ├── configs ├── autoencoder │ ├── autoencoder_kl_16x16x16.yaml │ ├── autoencoder_kl_32x32x4.yaml │ ├── autoencoder_kl_64x64x3.yaml │ └── autoencoder_kl_8x8x64.yaml ├── latent-diffusion │ ├── celebahq-ldm-vq-4.yaml │ ├── cin-ldm-vq-f8.yaml │ ├── cin256-v2.yaml │ ├── ffhq-ldm-vq-4.yaml │ ├── lsun_bedrooms-ldm-vq-4.yaml │ ├── lsun_churches-ldm-kl-8.yaml │ ├── txt2img-1p4B-eval.yaml │ ├── txt2img-1p4B-eval_with_tokens.yaml │ ├── txt2img-1p4B-finetune.yaml │ └── txt2img-1p4B-finetune_style.yaml └── stable-diffusion │ ├── v1-finetune.yaml │ ├── v1-finetune_unfrozen.yaml │ └── v1-inference.yaml ├── environment.yaml ├── evaluation ├── __pycache__ │ ├── clip_eval.cpython-36.pyc │ └── clip_eval.cpython-38.pyc └── clip_eval.py ├── img ├── samples.jpg ├── style.jpg └── teaser.jpg ├── ldm ├── __pycache__ │ ├── util.cpython-36.pyc │ └── util.cpython-38.pyc ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── base.cpython-36.pyc │ │ ├── base.cpython-38.pyc │ │ ├── personalized.cpython-36.pyc │ │ ├── personalized.cpython-38.pyc │ │ ├── personalized_compose.cpython-38.pyc │ │ ├── personalized_detailed_text.cpython-36.pyc │ │ ├── personalized_style.cpython-36.pyc │ │ └── personalized_style.cpython-38.pyc │ ├── base.py │ ├── imagenet.py │ ├── lsun.py │ ├── personalized.py │ └── personalized_style.py ├── lr_scheduler.py ├── models │ ├── __pycache__ │ │ ├── autoencoder.cpython-36.pyc │ │ └── autoencoder.cpython-38.pyc │ ├── autoencoder.py │ └── diffusion │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── ddim.cpython-36.pyc │ │ ├── ddim.cpython-38.pyc │ │ ├── ddim_inversion.cpython-38.pyc │ │ ├── ddpm.cpython-36.pyc │ │ ├── ddpm.cpython-38.pyc │ │ ├── ddpm_pti.cpython-38.pyc │ │ ├── plms.cpython-36.pyc │ │ └── plms.cpython-38.pyc │ │ ├── classifier.py │ │ ├── ddim.py │ │ ├── ddpm.py │ │ └── plms.py ├── modules │ ├── __pycache__ │ │ ├── attention.cpython-36.pyc │ │ ├── attention.cpython-38.pyc │ │ ├── ema.cpython-36.pyc │ │ ├── ema.cpython-38.pyc │ │ ├── embedding_manager.cpython-36.pyc │ │ ├── embedding_manager.cpython-38.pyc │ │ ├── x_transformer.cpython-36.pyc │ │ └── x_transformer.cpython-38.pyc │ ├── attention.py │ ├── diffusionmodules │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── model.cpython-36.pyc │ │ │ ├── model.cpython-38.pyc │ │ │ ├── openaimodel.cpython-36.pyc │ │ │ ├── openaimodel.cpython-38.pyc │ │ │ ├── util.cpython-36.pyc │ │ │ └── util.cpython-38.pyc │ │ ├── model.py │ │ ├── openaimodel.py │ │ └── util.py │ ├── distributions │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── distributions.cpython-36.pyc │ │ │ └── distributions.cpython-38.pyc │ │ └── distributions.py │ ├── ema.py │ ├── embedding_manager.py │ ├── encoders │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── modules.cpython-36.pyc │ │ │ └── modules.cpython-38.pyc │ │ ├── modules.py │ │ └── modules_bak.py │ ├── image_degradation │ │ ├── __init__.py │ │ ├── bsrgan.py │ │ ├── bsrgan_light.py │ │ ├── utils │ │ │ └── test.png │ │ └── utils_image.py │ ├── losses │ │ ├── __init__.py │ │ ├── contperceptual.py │ │ └── vqperceptual.py │ └── x_transformer.py └── util.py ├── main.py ├── merge_embeddings.py ├── models ├── first_stage_models │ ├── kl-f16 │ │ └── config.yaml │ ├── kl-f32 │ │ └── config.yaml │ ├── kl-f4 │ │ └── config.yaml │ ├── kl-f8 │ │ └── config.yaml │ ├── vq-f16 │ │ └── config.yaml │ ├── vq-f4-noattn │ │ └── config.yaml │ ├── vq-f4 │ │ └── config.yaml │ ├── vq-f8-n256 │ │ └── config.yaml │ └── vq-f8 │ │ └── config.yaml └── ldm │ ├── bsr_sr │ └── config.yaml │ ├── celeba256 │ └── config.yaml │ ├── cin256 │ └── config.yaml │ ├── ffhq256 │ └── config.yaml │ ├── inpainting_big │ └── config.yaml │ ├── layout2img-openimages256 │ └── config.yaml │ ├── lsun_beds256 │ └── config.yaml │ ├── lsun_churches256 │ └── config.yaml │ ├── semantic_synthesis256 │ └── config.yaml │ ├── semantic_synthesis512 │ └── config.yaml │ └── text2img256 │ └── config.yaml ├── scripts ├── download_first_stages.sh ├── download_models.sh ├── evaluate_model.py ├── inpaint.py ├── latent_imagenet_diffusion.ipynb ├── sample_diffusion.py ├── stable_txt2img.py └── txt2img.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/README.md -------------------------------------------------------------------------------- /assets/a-container-0038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/assets/a-container-0038.jpg -------------------------------------------------------------------------------- /assets/a-dog-on-top-of-sks-container-0023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/assets/a-dog-on-top-of-sks-container-0023.jpg -------------------------------------------------------------------------------- /assets/a-red-sks-container-0021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/assets/a-red-sks-container-0021.jpg -------------------------------------------------------------------------------- /assets/photo-of-a-sks-container-0018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/assets/photo-of-a-sks-container-0018.jpg -------------------------------------------------------------------------------- /assets/photo-of-a-sks-container-on-the-beach-0017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/assets/photo-of-a-sks-container-on-the-beach-0017.jpg -------------------------------------------------------------------------------- /assets/photo-of-a-sks-container-on-the-moon-0016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/assets/photo-of-a-sks-container-on-the-moon-0016.jpg -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_16x16x16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/autoencoder/autoencoder_kl_16x16x16.yaml -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_32x32x4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/autoencoder/autoencoder_kl_32x32x4.yaml -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_64x64x3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/autoencoder/autoencoder_kl_64x64x3.yaml -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_8x8x64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/autoencoder/autoencoder_kl_8x8x64.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/celebahq-ldm-vq-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/celebahq-ldm-vq-4.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/cin-ldm-vq-f8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/cin-ldm-vq-f8.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/cin256-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/cin256-v2.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/ffhq-ldm-vq-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/ffhq-ldm-vq-4.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/lsun_bedrooms-ldm-vq-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/lsun_bedrooms-ldm-vq-4.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/lsun_churches-ldm-kl-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/lsun_churches-ldm-kl-8.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/txt2img-1p4B-eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/txt2img-1p4B-eval.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/txt2img-1p4B-eval_with_tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/txt2img-1p4B-eval_with_tokens.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/txt2img-1p4B-finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/txt2img-1p4B-finetune.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/txt2img-1p4B-finetune_style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/latent-diffusion/txt2img-1p4B-finetune_style.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1-finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/stable-diffusion/v1-finetune.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1-finetune_unfrozen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/stable-diffusion/v1-finetune_unfrozen.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/configs/stable-diffusion/v1-inference.yaml -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/environment.yaml -------------------------------------------------------------------------------- /evaluation/__pycache__/clip_eval.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/evaluation/__pycache__/clip_eval.cpython-36.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/clip_eval.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/evaluation/__pycache__/clip_eval.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation/clip_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/evaluation/clip_eval.py -------------------------------------------------------------------------------- /img/samples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/img/samples.jpg -------------------------------------------------------------------------------- /img/style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/img/style.jpg -------------------------------------------------------------------------------- /img/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/img/teaser.jpg -------------------------------------------------------------------------------- /ldm/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/personalized.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/personalized.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/personalized.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/personalized.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/personalized_compose.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/personalized_compose.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/personalized_detailed_text.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/personalized_detailed_text.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/personalized_style.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/personalized_style.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/data/__pycache__/personalized_style.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/__pycache__/personalized_style.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/base.py -------------------------------------------------------------------------------- /ldm/data/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/imagenet.py -------------------------------------------------------------------------------- /ldm/data/lsun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/lsun.py -------------------------------------------------------------------------------- /ldm/data/personalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/personalized.py -------------------------------------------------------------------------------- /ldm/data/personalized_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/data/personalized_style.py -------------------------------------------------------------------------------- /ldm/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/lr_scheduler.py -------------------------------------------------------------------------------- /ldm/models/__pycache__/autoencoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/__pycache__/autoencoder.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/models/__pycache__/autoencoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/__pycache__/autoencoder.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/ddim.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/ddim.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/ddim.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/ddim.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/ddim_inversion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/ddim_inversion.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/ddpm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/ddpm.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/ddpm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/ddpm.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/ddpm_pti.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/ddpm_pti.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/plms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/plms.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/__pycache__/plms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/__pycache__/plms.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/models/diffusion/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/classifier.py -------------------------------------------------------------------------------- /ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /ldm/models/diffusion/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/ddpm.py -------------------------------------------------------------------------------- /ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /ldm/modules/__pycache__/attention.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/attention.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/attention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/attention.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/ema.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/ema.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/ema.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/ema.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/embedding_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/embedding_manager.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/embedding_manager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/embedding_manager.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/x_transformer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/x_transformer.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/__pycache__/x_transformer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/__pycache__/x_transformer.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/attention.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/openaimodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/openaimodel.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/openaimodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/openaimodel.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/distributions/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/distributions/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/distributions/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/distributions/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/distributions/__pycache__/distributions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/distributions/__pycache__/distributions.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/distributions/__pycache__/distributions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/distributions/__pycache__/distributions.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/ema.py -------------------------------------------------------------------------------- /ldm/modules/embedding_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/embedding_manager.py -------------------------------------------------------------------------------- /ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/encoders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/encoders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/encoders/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/encoders/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/encoders/__pycache__/modules.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/encoders/__pycache__/modules.cpython-36.pyc -------------------------------------------------------------------------------- /ldm/modules/encoders/__pycache__/modules.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/encoders/__pycache__/modules.cpython-38.pyc -------------------------------------------------------------------------------- /ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /ldm/modules/encoders/modules_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/encoders/modules_bak.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/image_degradation/__init__.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/image_degradation/bsrgan.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/bsrgan_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/image_degradation/bsrgan_light.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/utils/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/image_degradation/utils/test.png -------------------------------------------------------------------------------- /ldm/modules/image_degradation/utils_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/image_degradation/utils_image.py -------------------------------------------------------------------------------- /ldm/modules/losses/__init__.py: -------------------------------------------------------------------------------- 1 | from ldm.modules.losses.contperceptual import LPIPSWithDiscriminator -------------------------------------------------------------------------------- /ldm/modules/losses/contperceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/losses/contperceptual.py -------------------------------------------------------------------------------- /ldm/modules/losses/vqperceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/losses/vqperceptual.py -------------------------------------------------------------------------------- /ldm/modules/x_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/modules/x_transformer.py -------------------------------------------------------------------------------- /ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/ldm/util.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/main.py -------------------------------------------------------------------------------- /merge_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/merge_embeddings.py -------------------------------------------------------------------------------- /models/first_stage_models/kl-f16/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/kl-f16/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/kl-f32/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/kl-f32/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/kl-f4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/kl-f4/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/kl-f8/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/kl-f8/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f16/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/vq-f16/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f4-noattn/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/vq-f4-noattn/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/vq-f4/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f8-n256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/vq-f8-n256/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f8/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/first_stage_models/vq-f8/config.yaml -------------------------------------------------------------------------------- /models/ldm/bsr_sr/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/bsr_sr/config.yaml -------------------------------------------------------------------------------- /models/ldm/celeba256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/celeba256/config.yaml -------------------------------------------------------------------------------- /models/ldm/cin256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/cin256/config.yaml -------------------------------------------------------------------------------- /models/ldm/ffhq256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/ffhq256/config.yaml -------------------------------------------------------------------------------- /models/ldm/inpainting_big/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/inpainting_big/config.yaml -------------------------------------------------------------------------------- /models/ldm/layout2img-openimages256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/layout2img-openimages256/config.yaml -------------------------------------------------------------------------------- /models/ldm/lsun_beds256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/lsun_beds256/config.yaml -------------------------------------------------------------------------------- /models/ldm/lsun_churches256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/lsun_churches256/config.yaml -------------------------------------------------------------------------------- /models/ldm/semantic_synthesis256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/semantic_synthesis256/config.yaml -------------------------------------------------------------------------------- /models/ldm/semantic_synthesis512/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/semantic_synthesis512/config.yaml -------------------------------------------------------------------------------- /models/ldm/text2img256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/models/ldm/text2img256/config.yaml -------------------------------------------------------------------------------- /scripts/download_first_stages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/download_first_stages.sh -------------------------------------------------------------------------------- /scripts/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/download_models.sh -------------------------------------------------------------------------------- /scripts/evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/evaluate_model.py -------------------------------------------------------------------------------- /scripts/inpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/inpaint.py -------------------------------------------------------------------------------- /scripts/latent_imagenet_diffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/latent_imagenet_diffusion.ipynb -------------------------------------------------------------------------------- /scripts/sample_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/sample_diffusion.py -------------------------------------------------------------------------------- /scripts/stable_txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/stable_txt2img.py -------------------------------------------------------------------------------- /scripts/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/scripts/txt2img.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tp1845/Dreambooth-Stable-Diffusion/HEAD/setup.py --------------------------------------------------------------------------------