Fix typo in model name (#2)
Browse files- Fix typo in model name (9b04877bdb9005c61e3639ff77f98598cab9787d)
Co-authored-by: Gal <GalDude33@users.noreply.huggingface.co>
README.md
CHANGED
@@ -38,7 +38,7 @@ from diffusers import AutoPipelineForInpainting, DEISMultistepScheduler
|
|
38 |
import torch
|
39 |
from diffusers.utils import load_image
|
40 |
|
41 |
-
pipe = AutoPipelineForInpainting.from_pretrained('
|
42 |
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
|
43 |
pipe = pipe.to("cuda")
|
44 |
|
|
|
38 |
import torch
|
39 |
from diffusers.utils import load_image
|
40 |
|
41 |
+
pipe = AutoPipelineForInpainting.from_pretrained('Lykon/dreamshaper-8-inpainting', torch_dtype=torch.float16, variant="fp16")
|
42 |
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
|
43 |
pipe = pipe.to("cuda")
|
44 |
|