patrickvonplaten commited on
Commit
eea0010
1 Parent(s): cf1a4c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -15,13 +15,13 @@ to make sure generated images are watermarked.
15
 
16
  ```py
17
  from diffusers.models import AutoencoderKL
18
- from diffusers import StableDiffusionPipeline
19
 
20
  model = "stabilityai/sdxl-turbo"
21
 
22
  vae = AutoencoderKL.from_pretrained("imatag/stable-signature-bzh-sdxl-vae-strong")
23
 
24
- pipe = StableDiffusionPipeline.from_pretrained(model, vae=vae)
25
  ```
26
 
27
  For more information, please have a look at [the official demo](https://huggingface.co/spaces/imatag/stable-signature-bzh)
 
15
 
16
  ```py
17
  from diffusers.models import AutoencoderKL
18
+ from diffusers import StableDiffusionXLPipeline
19
 
20
  model = "stabilityai/sdxl-turbo"
21
 
22
  vae = AutoencoderKL.from_pretrained("imatag/stable-signature-bzh-sdxl-vae-strong")
23
 
24
+ pipe = StableDiffusionXLPipeline.from_pretrained(model, vae=vae)
25
  ```
26
 
27
  For more information, please have a look at [the official demo](https://huggingface.co/spaces/imatag/stable-signature-bzh)