Fix typo in model name
Browse files
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 |
|