├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── ESRGAN └── Put ESRGAN models here.txt ├── README.md ├── artists.csv ├── environment-wsl2.yaml ├── modules ├── artists.py ├── codeformer │ ├── codeformer_arch.py │ └── vqgan_arch.py ├── codeformer_model.py ├── devices.py ├── errors.py ├── esrgam_model_arch.py ├── esrgan_model.py ├── extras.py ├── face_restoration.py ├── gfpgan_model.py ├── images.py ├── img2img.py ├── interrogate.py ├── lowvram.py ├── paths.py ├── processing.py ├── realesrgan_model.py ├── scripts.py ├── sd_hijack.py ├── sd_samplers.py ├── shared.py ├── styles.py ├── txt2img.py └── ui.py ├── requirements.txt ├── requirements_versions.txt ├── screenshot.png ├── script.js ├── scripts ├── batch.py ├── custom_code.py ├── img2imgalt.py ├── poor_mans_outpainting.py ├── prompt_matrix.py ├── prompts_from_file.py └── xy_grid.py ├── style.css ├── webui-user.bat ├── webui.bat └── webui.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/.gitignore -------------------------------------------------------------------------------- /ESRGAN/Put ESRGAN models here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/README.md -------------------------------------------------------------------------------- /artists.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/artists.csv -------------------------------------------------------------------------------- /environment-wsl2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/environment-wsl2.yaml -------------------------------------------------------------------------------- /modules/artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/artists.py -------------------------------------------------------------------------------- /modules/codeformer/codeformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/codeformer/codeformer_arch.py -------------------------------------------------------------------------------- /modules/codeformer/vqgan_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/codeformer/vqgan_arch.py -------------------------------------------------------------------------------- /modules/codeformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/codeformer_model.py -------------------------------------------------------------------------------- /modules/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/devices.py -------------------------------------------------------------------------------- /modules/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/errors.py -------------------------------------------------------------------------------- /modules/esrgam_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/esrgam_model_arch.py -------------------------------------------------------------------------------- /modules/esrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/esrgan_model.py -------------------------------------------------------------------------------- /modules/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/extras.py -------------------------------------------------------------------------------- /modules/face_restoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/face_restoration.py -------------------------------------------------------------------------------- /modules/gfpgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/gfpgan_model.py -------------------------------------------------------------------------------- /modules/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/images.py -------------------------------------------------------------------------------- /modules/img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/img2img.py -------------------------------------------------------------------------------- /modules/interrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/interrogate.py -------------------------------------------------------------------------------- /modules/lowvram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/lowvram.py -------------------------------------------------------------------------------- /modules/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/paths.py -------------------------------------------------------------------------------- /modules/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/processing.py -------------------------------------------------------------------------------- /modules/realesrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/realesrgan_model.py -------------------------------------------------------------------------------- /modules/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/scripts.py -------------------------------------------------------------------------------- /modules/sd_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/sd_hijack.py -------------------------------------------------------------------------------- /modules/sd_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/sd_samplers.py -------------------------------------------------------------------------------- /modules/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/shared.py -------------------------------------------------------------------------------- /modules/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/styles.py -------------------------------------------------------------------------------- /modules/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/txt2img.py -------------------------------------------------------------------------------- /modules/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/modules/ui.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/requirements_versions.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/screenshot.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/script.js -------------------------------------------------------------------------------- /scripts/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/batch.py -------------------------------------------------------------------------------- /scripts/custom_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/custom_code.py -------------------------------------------------------------------------------- /scripts/img2imgalt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/img2imgalt.py -------------------------------------------------------------------------------- /scripts/poor_mans_outpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/poor_mans_outpainting.py -------------------------------------------------------------------------------- /scripts/prompt_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/prompt_matrix.py -------------------------------------------------------------------------------- /scripts/prompts_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/prompts_from_file.py -------------------------------------------------------------------------------- /scripts/xy_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/scripts/xy_grid.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/style.css -------------------------------------------------------------------------------- /webui-user.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/webui-user.bat -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/webui.bat -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobabooga/stable-diffusion-automatic/HEAD/webui.py --------------------------------------------------------------------------------