Lykon commited on
Commit
9b48104
1 Parent(s): 9e28f01

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -11,12 +11,12 @@ tags:
11
  - diffusers
12
  - anime
13
  - dreamshaper
14
- duplicated_from: lykon-models/dreamshaper-7
15
  ---
16
 
17
  # Dreamshaper 7
18
 
19
- `lykon-models/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,7 +37,7 @@ pip install diffusers transformers accelerate
37
  from diffusers import AutoPipelineForText2Image, DEISMultistepScheduler
38
  import torch
39
 
40
- pipe = AutoPipelineForText2Image.from_pretrained('lykon-models/dreamshaper-7', torch_dtype=torch.float16, variant="fp16")
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