Commit
•
7aff67a
1
Parent(s):
3699054
Add diffusers example (#3)
Browse files- Add diffusers example (cf96b876a3359c0dd072bea15eb6b6fa82244dcd)
Co-authored-by: Patrick von Platen <[email protected]>
README.md
CHANGED
@@ -15,6 +15,13 @@ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffuse
|
|
15 |
|
16 |
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
```python
|
19 |
#!pip install diffusers transformers scipy torch
|
20 |
from diffusers import StableDiffusionPipeline
|
|
|
15 |
|
16 |
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
|
17 |
|
18 |
+
### 🧨 Diffusers
|
19 |
+
|
20 |
+
This model can be used just like any other Stable Diffusion model. For more information,
|
21 |
+
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
22 |
+
|
23 |
+
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
|
24 |
+
|
25 |
```python
|
26 |
#!pip install diffusers transformers scipy torch
|
27 |
from diffusers import StableDiffusionPipeline
|