Spaces:
Configuration error
Configuration error
Commit
Β·
60761a1
1
Parent(s):
b81581f
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,40 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom: yellow
|
| 5 |
-
colorTo: yellow
|
| 6 |
-
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Core ML Models
|
| 3 |
+
emoji: π±
|
|
|
|
|
|
|
|
|
|
| 4 |
pinned: false
|
| 5 |
+
tags:
|
| 6 |
+
- coreml
|
| 7 |
+
- stable-diffusion
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# Core ML Models Repository
|
| 11 |
+
|
| 12 |
+
Thanks to Apple engineers, we can now run Stable Diffusion on Apple Silicon using Core ML!<br>
|
| 13 |
+
However its hard to find compatible models and converting models isn't the easiest thing to do.<br>
|
| 14 |
+
By organizing Core ML models in one place, hopefully it will be easier to find them and for everyone to benefit.
|
| 15 |
+
|
| 16 |
+
## Contributing
|
| 17 |
+
|
| 18 |
+
Do you have a model that was converted and wish to upload? Join our community or create a Pull Request to get started!<br>
|
| 19 |
+
|
| 20 |
+
### Repo Name
|
| 21 |
+
|
| 22 |
+
Repos are named with the original diffusers Hugging Face repo name prefixed by `coreml-`. So for example, `coreml-stable-diffusion-2-1`.
|
| 23 |
+
|
| 24 |
+
### Repo README Contents
|
| 25 |
+
|
| 26 |
+
You can copy the beginning template for the README from one of the repo models that already exists here.<br>
|
| 27 |
+
Then copy the original model's README as the body.
|
| 28 |
+
|
| 29 |
+
### Repo Directory Structure
|
| 30 |
+
|
| 31 |
+
```
|
| 32 |
+
coreml-stable-diffusion-2-1
|
| 33 |
+
βββ README.md
|
| 34 |
+
βββ original
|
| 35 |
+
β βββ stable-diffusion-2-1_original_compiled.zip
|
| 36 |
+
β βββ stable-diffusion-2-1_512x768_original_compiled.zip
|
| 37 |
+
β βββ ...
|
| 38 |
+
βββ split_einsum
|
| 39 |
+
βββ stable-diffusion-2-1_split-einsum_compiled.zip
|
| 40 |
+
```
|