├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── README.md ├── artists.csv ├── embeddings └── Place Textual Inversion embeddings here.txt ├── environment-wsl2.yaml ├── javascript ├── aspectRatioOverlay.js ├── dragdrop.js ├── edit-attention.js ├── hints.js ├── imageMaskFix.js ├── imageviewer.js ├── notification.js ├── progressbar.js ├── textualInversion.js └── ui.js ├── launch.py ├── models └── Stable-diffusion │ └── Put Stable Diffusion checkpoints here.txt ├── modules ├── artists.py ├── bsrgan_model.py ├── bsrgan_model_arch.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 ├── generation_parameters_copypaste.py ├── gfpgan_model.py ├── hypernetwork.py ├── images.py ├── img2img.py ├── interrogate.py ├── ldsr_model.py ├── ldsr_model_arch.py ├── lowvram.py ├── masking.py ├── memmon.py ├── modelloader.py ├── paths.py ├── processing.py ├── prompt_parser.py ├── realesrgan_model.py ├── safety.py ├── scripts.py ├── scunet_model.py ├── scunet_model_arch.py ├── sd_hijack.py ├── sd_hijack_optimizations.py ├── sd_models.py ├── sd_samplers.py ├── shared.py ├── styles.py ├── swinir_model.py ├── swinir_model_arch.py ├── textual_inversion │ ├── dataset.py │ ├── preprocess.py │ ├── textual_inversion.py │ └── ui.py ├── txt2img.py ├── ui.py └── upscaler.py ├── requirements.txt ├── requirements_versions.txt ├── screenshot.png ├── script.js ├── scripts ├── custom_code.py ├── img2imgalt.py ├── loopback.py ├── outpainting_mk_2.py ├── poor_mans_outpainting.py ├── prompt_matrix.py ├── prompts_from_file.py ├── sd_upscale.py └── xy_grid.py ├── style.css ├── textual_inversion_templates ├── style.txt ├── style_filewords.txt ├── subject.txt └── subject_filewords.txt ├── txt2img_Screenshot.png ├── webui-user.bat ├── webui-user.sh ├── webui.bat ├── webui.py └── webui.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/README.md -------------------------------------------------------------------------------- /artists.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/artists.csv -------------------------------------------------------------------------------- /embeddings/Place Textual Inversion embeddings here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment-wsl2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/environment-wsl2.yaml -------------------------------------------------------------------------------- /javascript/aspectRatioOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/aspectRatioOverlay.js -------------------------------------------------------------------------------- /javascript/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/dragdrop.js -------------------------------------------------------------------------------- /javascript/edit-attention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/edit-attention.js -------------------------------------------------------------------------------- /javascript/hints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/hints.js -------------------------------------------------------------------------------- /javascript/imageMaskFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/imageMaskFix.js -------------------------------------------------------------------------------- /javascript/imageviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/imageviewer.js -------------------------------------------------------------------------------- /javascript/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/notification.js -------------------------------------------------------------------------------- /javascript/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/progressbar.js -------------------------------------------------------------------------------- /javascript/textualInversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/textualInversion.js -------------------------------------------------------------------------------- /javascript/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/javascript/ui.js -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/launch.py -------------------------------------------------------------------------------- /models/Stable-diffusion/Put Stable Diffusion checkpoints here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/artists.py -------------------------------------------------------------------------------- /modules/bsrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/bsrgan_model.py -------------------------------------------------------------------------------- /modules/bsrgan_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/bsrgan_model_arch.py -------------------------------------------------------------------------------- /modules/codeformer/codeformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/codeformer/codeformer_arch.py -------------------------------------------------------------------------------- /modules/codeformer/vqgan_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/codeformer/vqgan_arch.py -------------------------------------------------------------------------------- /modules/codeformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/codeformer_model.py -------------------------------------------------------------------------------- /modules/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/devices.py -------------------------------------------------------------------------------- /modules/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/errors.py -------------------------------------------------------------------------------- /modules/esrgam_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/esrgam_model_arch.py -------------------------------------------------------------------------------- /modules/esrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/esrgan_model.py -------------------------------------------------------------------------------- /modules/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/extras.py -------------------------------------------------------------------------------- /modules/face_restoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/face_restoration.py -------------------------------------------------------------------------------- /modules/generation_parameters_copypaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/generation_parameters_copypaste.py -------------------------------------------------------------------------------- /modules/gfpgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/gfpgan_model.py -------------------------------------------------------------------------------- /modules/hypernetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/hypernetwork.py -------------------------------------------------------------------------------- /modules/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/images.py -------------------------------------------------------------------------------- /modules/img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/img2img.py -------------------------------------------------------------------------------- /modules/interrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/interrogate.py -------------------------------------------------------------------------------- /modules/ldsr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/ldsr_model.py -------------------------------------------------------------------------------- /modules/ldsr_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/ldsr_model_arch.py -------------------------------------------------------------------------------- /modules/lowvram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/lowvram.py -------------------------------------------------------------------------------- /modules/masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/masking.py -------------------------------------------------------------------------------- /modules/memmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/memmon.py -------------------------------------------------------------------------------- /modules/modelloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/modelloader.py -------------------------------------------------------------------------------- /modules/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/paths.py -------------------------------------------------------------------------------- /modules/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/processing.py -------------------------------------------------------------------------------- /modules/prompt_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/prompt_parser.py -------------------------------------------------------------------------------- /modules/realesrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/realesrgan_model.py -------------------------------------------------------------------------------- /modules/safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/safety.py -------------------------------------------------------------------------------- /modules/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/scripts.py -------------------------------------------------------------------------------- /modules/scunet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/scunet_model.py -------------------------------------------------------------------------------- /modules/scunet_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/scunet_model_arch.py -------------------------------------------------------------------------------- /modules/sd_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/sd_hijack.py -------------------------------------------------------------------------------- /modules/sd_hijack_optimizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/sd_hijack_optimizations.py -------------------------------------------------------------------------------- /modules/sd_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/sd_models.py -------------------------------------------------------------------------------- /modules/sd_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/sd_samplers.py -------------------------------------------------------------------------------- /modules/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/shared.py -------------------------------------------------------------------------------- /modules/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/styles.py -------------------------------------------------------------------------------- /modules/swinir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/swinir_model.py -------------------------------------------------------------------------------- /modules/swinir_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/swinir_model_arch.py -------------------------------------------------------------------------------- /modules/textual_inversion/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/textual_inversion/dataset.py -------------------------------------------------------------------------------- /modules/textual_inversion/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/textual_inversion/preprocess.py -------------------------------------------------------------------------------- /modules/textual_inversion/textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/textual_inversion/textual_inversion.py -------------------------------------------------------------------------------- /modules/textual_inversion/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/textual_inversion/ui.py -------------------------------------------------------------------------------- /modules/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/txt2img.py -------------------------------------------------------------------------------- /modules/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/ui.py -------------------------------------------------------------------------------- /modules/upscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/modules/upscaler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/requirements_versions.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/screenshot.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/script.js -------------------------------------------------------------------------------- /scripts/custom_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/custom_code.py -------------------------------------------------------------------------------- /scripts/img2imgalt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/img2imgalt.py -------------------------------------------------------------------------------- /scripts/loopback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/loopback.py -------------------------------------------------------------------------------- /scripts/outpainting_mk_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/outpainting_mk_2.py -------------------------------------------------------------------------------- /scripts/poor_mans_outpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/poor_mans_outpainting.py -------------------------------------------------------------------------------- /scripts/prompt_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/prompt_matrix.py -------------------------------------------------------------------------------- /scripts/prompts_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/prompts_from_file.py -------------------------------------------------------------------------------- /scripts/sd_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/sd_upscale.py -------------------------------------------------------------------------------- /scripts/xy_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/scripts/xy_grid.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/style.css -------------------------------------------------------------------------------- /textual_inversion_templates/style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/textual_inversion_templates/style.txt -------------------------------------------------------------------------------- /textual_inversion_templates/style_filewords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/textual_inversion_templates/style_filewords.txt -------------------------------------------------------------------------------- /textual_inversion_templates/subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/textual_inversion_templates/subject.txt -------------------------------------------------------------------------------- /textual_inversion_templates/subject_filewords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/textual_inversion_templates/subject_filewords.txt -------------------------------------------------------------------------------- /txt2img_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/txt2img_Screenshot.png -------------------------------------------------------------------------------- /webui-user.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/webui-user.bat -------------------------------------------------------------------------------- /webui-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/webui-user.sh -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/webui.bat -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/webui.py -------------------------------------------------------------------------------- /webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCheeze/stable-diffusion-webui/HEAD/webui.sh --------------------------------------------------------------------------------