ehsanakh commited on
Commit
3d7cb18
1 Parent(s): 3c58219

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -29,7 +29,7 @@ For details on the development and training of our model, please refer to our bl
29
 
30
  ### Using the model with 🧨 Diffusers
31
 
32
- Install diffusers >= 0.27.0 and the relevant dependencies. For now, you need to install from the `main` diffusers branch in GitHub until a new release is published in PyPi.
33
 
34
  ```
35
  pip install git+https://github.com/huggingface/diffusers.git
@@ -52,8 +52,8 @@ pipe = DiffusionPipeline.from_pretrained(
52
  variant="fp16",
53
  ).to("cuda")
54
 
55
- prompt = "a chihuahua riding on the back of a golden retriever, in front of the Eiffel tower"
56
- image = pipe(prompt=prompt, num_inference_steps=25, guidance_scale=5).images[0]
57
  ```
58
 
59
  ### Using the model with Automatic1111/ComfyUI
 
29
 
30
  ### Using the model with 🧨 Diffusers
31
 
32
+ Install diffusers >= 0.27.0 and the relevant dependencies. For now, you need to install from the `main` diffusers branch in GitHub until a new release is published in PyPi. Support for DPM++ 2M Karras scheduler will be added to diffusers soon.
33
 
34
  ```
35
  pip install git+https://github.com/huggingface/diffusers.git
 
52
  variant="fp16",
53
  ).to("cuda")
54
 
55
+ prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
56
+ image = pipe(prompt=prompt, num_inference_steps=50, guidance_scale=7).images[0]
57
  ```
58
 
59
  ### Using the model with Automatic1111/ComfyUI