Model update for stable-diffusion-webui

shared.py and sd_models.py shared.py: options_templates.update(options_section((‘sd’, “Stable Diffusion”), { “sd_model_checkpoint”: OptionInfo(None, “Stable Diffusion checkpoint”, gr.Dropdown, lambda: {“choices”: list_checkpoint_tiles()}, refresh=refresh_checkpoints), “sd_checkpoint_cache”: OptionInfo(0, “Checkpoints to cache in RAM”, gr.Slider, {“minimum”: 0, “maximum”: 10, “step”: 1}) , “sd_vae_checkpoint_cache”: OptionInfo(0, “VAE Checkpoints to cache in RAM”, gr.Slider, {“minimum”: 0, “maximum”: 10, “step”: 1} ), “sd_vae”: OptionInfo(“Automatic”, “SD VAE”, gr.Dropdown, lambda: […]

StableDiffusion-webUI environment configuration, deployment, localization, expansion super detailed steps || server Linux Ubuntu/local Windows || higher degree of customization than official installation || under anaconda virtual environment

Directory 1. Code download The following command uses git to download the code (may not run through directly, and some code needs to be modified later, see “4. Code modification” section) 1. Download the stable-diffusion-webui repository 2. Download other repositories 2. Environment configuration 0. Install anaconda, CUDA, cuDNN 1. Create and activate a new conda […]

Stable Diffusion Hardcore Survival Guide: VAE in WebUI

This article uses the “Signature 4.0 International (CC BY 4.0)” license agreement. You are welcome to reprint or re-use it, but you need to indicate the source. Attribution 4.0 International (CC BY 4.0) Author of this article: Su Yang Created: July 30, 2023 Statistical word count: 11485 words Reading time: 23 minutes to read Link […]

Hardcore Survival Guide to Stable Diffusion: CodeFormer in WebUI

This article talks about the core component of Stable Diffusion WebUI, the powerful facial image restoration model CodeFormer. Write in front In the Stable Diffusion WebUI project, in the source code modules directory, there is an interesting directory called CodeFormer, which is the protagonist of this article. CodeFormer is a great open source project sczhou/CodeFormer, […]

Stable Diffusion – Stable Diffusion WebUI supports environment configuration for SDXL 1.0 models

Welcome to my CSDN: https://spike.blog.csdn.net/ Address of this article: https://spike.blog.csdn.net/article/details/132056980 SDXL 1.0 version is the latest version of Stable Diffusion, a text-to-image generation technology based on latent diffusion model, capable of generating high-resolution, high-quality, high-diversity images from any input text, with The following features: Better image quality: It can produce clear, realistic, and beautiful images […]

Stable Diffusion Hardcore Survival Guide: VAE in WebUI

This article talks about things related to VAE in the most popular and complex open source model management graphical interface “stable-diffusion-webui” in the Stable Diffusion ecosystem. Write in front There is a very important project in the Stable Diffusion ecology. It can be said that it has made great contributions to the prosperity of the […]

Install Stable Diffusion WebUI on Ubuntu 22.04.2 LTS

1. Environment OS: Ubuntu 22.04 LTS Kernel: 5.15.0-60-generic CPU: Intel(R) Xeon(R) Gold 6278C CPU @ 2.60GHz, 8vCPUs GPU: 1*NVIDIA V100-PCIe-32G RAM: 64GB system disk: 512 GiB data disk: 2048 GiB Stable Diffusion WebUI version: 0cc0ee1 (2023/2/20) 2. Download Stable Diffusion models Go to HuggingFace or Civitai to find a model. Use wget command to download […]

Debug Stable Diffusion webui

Article directory SD Preliminary preparation some surprises TorchHijackForUnet Txt2Img works with Lora Run txt2img.py alone get all resources code address parameter sd model main program code address parameters (same as above) Model Inference LORA application Refactor and use the LORA model Use Lora reconstructed network as sampler Post-processing APIs run guide Write Api according to […]