Add variants description to model card (#2)
Browse files
README.md
CHANGED
|
@@ -18,7 +18,21 @@ The **Stable-Diffusion-v1-5** checkpoint was initialized with the weights of the
|
|
| 18 |
checkpoint and subsequently fine-tuned on 595k steps at resolution 512x512 on "laion-aesthetics v2 5+" and 10% dropping of the text-conditioning to improve [classifier-free guidance sampling](https://arxiv.org/abs/2207.12598).
|
| 19 |
|
| 20 |
|
| 21 |
-
These weights here have been converted to Core ML for use on Apple Silicon hardware.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
If you need weights for the 🧨 Diffusers library, please [visit this model instead](https://huggingface.co/runwayml/stable-diffusion-v1-5).
|
| 24 |
|
|
|
|
| 18 |
checkpoint and subsequently fine-tuned on 595k steps at resolution 512x512 on "laion-aesthetics v2 5+" and 10% dropping of the text-conditioning to improve [classifier-free guidance sampling](https://arxiv.org/abs/2207.12598).
|
| 19 |
|
| 20 |
|
| 21 |
+
These weights here have been converted to Core ML for use on Apple Silicon hardware.
|
| 22 |
+
|
| 23 |
+
There are 4 variants of the Core ML weights:
|
| 24 |
+
|
| 25 |
+
```
|
| 26 |
+
coreml-stable-diffusion-v1-5
|
| 27 |
+
├── original
|
| 28 |
+
│ ├── compiled # Swift inference, "original" attention
|
| 29 |
+
│ └── packages # Python inference, "original" attention
|
| 30 |
+
└── split_einsum
|
| 31 |
+
├── compiled # Swift inference, "split_einsum" attention
|
| 32 |
+
└── packages # Python inference, "split_einsum" attention
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
Please, refer to https://huggingface.co/blog/diffusers-coreml for details.
|
| 36 |
|
| 37 |
If you need weights for the 🧨 Diffusers library, please [visit this model instead](https://huggingface.co/runwayml/stable-diffusion-v1-5).
|
| 38 |
|