Update README.md
Browse files
README.md
CHANGED
@@ -11,12 +11,12 @@ tags:
|
|
11 |
- diffusers
|
12 |
- anime
|
13 |
- dreamshaper
|
14 |
-
duplicated_from: lykon
|
15 |
---
|
16 |
|
17 |
# Dreamshaper 7
|
18 |
|
19 |
-
`lykon
|
20 |
|
21 |
Please consider supporting me:
|
22 |
- on [Patreon](https://www.patreon.com/Lykon275)
|
@@ -37,7 +37,7 @@ pip install diffusers transformers accelerate
|
|
37 |
from diffusers import AutoPipelineForText2Image, DEISMultistepScheduler
|
38 |
import torch
|
39 |
|
40 |
-
pipe = AutoPipelineForText2Image.from_pretrained('lykon
|
41 |
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
|
42 |
pipe = pipe.to("cuda")
|
43 |
|
|
|
11 |
- diffusers
|
12 |
- anime
|
13 |
- dreamshaper
|
14 |
+
duplicated_from: lykon/dreamshaper-7
|
15 |
---
|
16 |
|
17 |
# Dreamshaper 7
|
18 |
|
19 |
+
`lykon/dreamshaper-7` is a Stable Diffusion model that has been fine-tuned on [runwayml/stable-diffusion-v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5).
|
20 |
|
21 |
Please consider supporting me:
|
22 |
- on [Patreon](https://www.patreon.com/Lykon275)
|
|
|
37 |
from diffusers import AutoPipelineForText2Image, DEISMultistepScheduler
|
38 |
import torch
|
39 |
|
40 |
+
pipe = AutoPipelineForText2Image.from_pretrained('lykon/dreamshaper-7', torch_dtype=torch.float16, variant="fp16")
|
41 |
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
|
42 |
pipe = pipe.to("cuda")
|
43 |
|