Merge branch 'main' into bugfix/load-embeddings-once

This commit is contained in:
blessedcoolant 2023-03-26 04:19:43 +13:00 committed by GitHub
commit e4d903af20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,11 +168,15 @@ used by Stable Diffusion 1.4 and 1.5.
After installation, your `models.yaml` should contain an entry that looks like After installation, your `models.yaml` should contain an entry that looks like
this one: this one:
inpainting-1.5: weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt ```yml
description: SD inpainting v1.5 config: inpainting-1.5:
configs/stable-diffusion/v1-inpainting-inference.yaml vae: weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt
models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt width: 512 description: SD inpainting v1.5
config: configs/stable-diffusion/v1-inpainting-inference.yaml
vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
width: 512
height: 512 height: 512
```
As shown in the example, you may include a VAE fine-tuning weights file as well. As shown in the example, you may include a VAE fine-tuning weights file as well.
This is strongly recommended. This is strongly recommended.