godly-devotion commited on
Commit
60761a1
β€’
1 Parent(s): b81581f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -6
README.md CHANGED
@@ -1,10 +1,40 @@
1
  ---
2
- title: README
3
- emoji: 🐒
4
- colorFrom: yellow
5
- colorTo: yellow
6
- sdk: static
7
  pinned: false
 
 
 
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card πŸ”₯
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```