Update README.md
Browse files
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 = "
|
56 |
-
image = pipe(prompt=prompt, num_inference_steps=
|
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
|