From 4156bfd81058b4ff27c8ac6b737e2e279a34dacf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Sanz?= Date: Sat, 11 Mar 2023 02:08:59 +0100 Subject: [PATCH] Fixed snippet/code formatting It was pasted as plain text, now it's a code fence. --- docs/features/INPAINTING.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/features/INPAINTING.md b/docs/features/INPAINTING.md index f3a879b190..bebf9bc229 100644 --- a/docs/features/INPAINTING.md +++ b/docs/features/INPAINTING.md @@ -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 this one: -inpainting-1.5: weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt -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 +```yml +inpainting-1.5: + weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt + 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 +``` As shown in the example, you may include a VAE fine-tuning weights file as well. This is strongly recommended.