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 [b
|
|
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
|
@@ -38,6 +38,8 @@ pip install transformers accelerate safetensors
|
|
38 |
|
39 |
**Notes:**
|
40 |
- The pipeline uses the `EDMEulerScheduler` scheduler. It's an [EDM formulation](https://arxiv.org/abs/2206.00364) of the Euler scheduler.
|
|
|
|
|
41 |
- `guidance_scale=5.0` is a good default for this scheduler.
|
42 |
|
43 |
Then, run the following snippet:
|
|
|
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
|
|
|
38 |
|
39 |
**Notes:**
|
40 |
- The pipeline uses the `EDMEulerScheduler` scheduler. It's an [EDM formulation](https://arxiv.org/abs/2206.00364) of the Euler scheduler.
|
41 |
+
- `guidance_scale=7.0` is a good default for this scheduler.
|
42 |
+
- The pipeline also supports the `EDMDPMSolverMultistepScheduler` scheduler. It's an [EDM formulation](https://arxiv.org/abs/2206.00364) of the DPM scheduler.
|
43 |
- `guidance_scale=5.0` is a good default for this scheduler.
|
44 |
|
45 |
Then, run the following snippet:
|