├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── ESRGAN └── Put ESRGAN models here.txt ├── README.md ├── SwinIR └── put_swinir_models_here.txt ├── api.bat ├── api.py ├── artists.csv ├── environment-wsl2.yaml ├── gdiffusion.py ├── javascript ├── aspectRatioOverlay.js ├── dragdrop.js ├── hints.js ├── imageMaskFix.js ├── imageviewer.js ├── notification.js ├── progressbar.js └── ui.js ├── launch.py ├── launch_api.py ├── models └── Put Stable Diffusion checkpoints here.txt ├── 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 ├── generation_parameters_copypaste.py ├── gfpgan_model.py ├── images.py ├── img2img.py ├── interrogate.py ├── ldsr_model.py ├── lowvram.py ├── masking.py ├── memmon.py ├── paths.py ├── processing.py ├── prompt_parser.py ├── realesrgan_model.py ├── safety.py ├── scripts.py ├── sd_hijack.py ├── sd_models.py ├── sd_samplers.py ├── shared.py ├── styles.py ├── swinir.py ├── swinir_arch.py ├── txt2img.py └── ui.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 ├── txt2img_Screenshot.png ├── ui-config.json ├── webui-user.bat ├── webui-user.sh ├── webui.bat ├── webui.py └── webui.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /ESRGAN/Put ESRGAN models here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/README.md -------------------------------------------------------------------------------- /SwinIR/put_swinir_models_here.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /api.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/api.bat -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/api.py -------------------------------------------------------------------------------- /artists.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/artists.csv -------------------------------------------------------------------------------- /environment-wsl2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/environment-wsl2.yaml -------------------------------------------------------------------------------- /gdiffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/gdiffusion.py -------------------------------------------------------------------------------- /javascript/aspectRatioOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/aspectRatioOverlay.js -------------------------------------------------------------------------------- /javascript/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/dragdrop.js -------------------------------------------------------------------------------- /javascript/hints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/hints.js -------------------------------------------------------------------------------- /javascript/imageMaskFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/imageMaskFix.js -------------------------------------------------------------------------------- /javascript/imageviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/imageviewer.js -------------------------------------------------------------------------------- /javascript/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/notification.js -------------------------------------------------------------------------------- /javascript/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/progressbar.js -------------------------------------------------------------------------------- /javascript/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/javascript/ui.js -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/launch.py -------------------------------------------------------------------------------- /launch_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/launch_api.py -------------------------------------------------------------------------------- /models/Put Stable Diffusion checkpoints here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/artists.py -------------------------------------------------------------------------------- /modules/codeformer/codeformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/codeformer/codeformer_arch.py -------------------------------------------------------------------------------- /modules/codeformer/vqgan_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/codeformer/vqgan_arch.py -------------------------------------------------------------------------------- /modules/codeformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/codeformer_model.py -------------------------------------------------------------------------------- /modules/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/devices.py -------------------------------------------------------------------------------- /modules/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/errors.py -------------------------------------------------------------------------------- /modules/esrgam_model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/esrgam_model_arch.py -------------------------------------------------------------------------------- /modules/esrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/esrgan_model.py -------------------------------------------------------------------------------- /modules/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/extras.py -------------------------------------------------------------------------------- /modules/face_restoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/face_restoration.py -------------------------------------------------------------------------------- /modules/generation_parameters_copypaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/generation_parameters_copypaste.py -------------------------------------------------------------------------------- /modules/gfpgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/gfpgan_model.py -------------------------------------------------------------------------------- /modules/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/images.py -------------------------------------------------------------------------------- /modules/img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/img2img.py -------------------------------------------------------------------------------- /modules/interrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/interrogate.py -------------------------------------------------------------------------------- /modules/ldsr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/ldsr_model.py -------------------------------------------------------------------------------- /modules/lowvram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/lowvram.py -------------------------------------------------------------------------------- /modules/masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/masking.py -------------------------------------------------------------------------------- /modules/memmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/memmon.py -------------------------------------------------------------------------------- /modules/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/paths.py -------------------------------------------------------------------------------- /modules/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/processing.py -------------------------------------------------------------------------------- /modules/prompt_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/prompt_parser.py -------------------------------------------------------------------------------- /modules/realesrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/realesrgan_model.py -------------------------------------------------------------------------------- /modules/safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/safety.py -------------------------------------------------------------------------------- /modules/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/scripts.py -------------------------------------------------------------------------------- /modules/sd_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/sd_hijack.py -------------------------------------------------------------------------------- /modules/sd_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/sd_models.py -------------------------------------------------------------------------------- /modules/sd_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/sd_samplers.py -------------------------------------------------------------------------------- /modules/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/shared.py -------------------------------------------------------------------------------- /modules/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/styles.py -------------------------------------------------------------------------------- /modules/swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/swinir.py -------------------------------------------------------------------------------- /modules/swinir_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/swinir_arch.py -------------------------------------------------------------------------------- /modules/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/txt2img.py -------------------------------------------------------------------------------- /modules/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/modules/ui.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/requirements_versions.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/screenshot.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/script.js -------------------------------------------------------------------------------- /scripts/custom_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/custom_code.py -------------------------------------------------------------------------------- /scripts/img2imgalt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/img2imgalt.py -------------------------------------------------------------------------------- /scripts/loopback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/loopback.py -------------------------------------------------------------------------------- /scripts/outpainting_mk_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/outpainting_mk_2.py -------------------------------------------------------------------------------- /scripts/poor_mans_outpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/poor_mans_outpainting.py -------------------------------------------------------------------------------- /scripts/prompt_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/prompt_matrix.py -------------------------------------------------------------------------------- /scripts/prompts_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/prompts_from_file.py -------------------------------------------------------------------------------- /scripts/sd_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/sd_upscale.py -------------------------------------------------------------------------------- /scripts/xy_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/scripts/xy_grid.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/style.css -------------------------------------------------------------------------------- /txt2img_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/txt2img_Screenshot.png -------------------------------------------------------------------------------- /ui-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/ui-config.json -------------------------------------------------------------------------------- /webui-user.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/webui-user.bat -------------------------------------------------------------------------------- /webui-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/webui-user.sh -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/webui.bat -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/webui.py -------------------------------------------------------------------------------- /webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperator-maximus/stable-diffusion-webui/HEAD/webui.sh --------------------------------------------------------------------------------