jiaowobaba02
commited on
Commit
•
fc40e9a
1
Parent(s):
bb924e5
Update README.md
Browse files
README.md
CHANGED
@@ -3,4 +3,19 @@ pipeline_tag: text-to-image
|
|
3 |
tags:
|
4 |
- art
|
5 |
- stable-diffusion
|
6 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
tags:
|
4 |
- art
|
5 |
- stable-diffusion
|
6 |
+
---
|
7 |
+
|
8 |
+
# Stable-diffusion-GGUF
|
9 |
+
|
10 |
+
There are some files quantitated to q8_0 , q5_0 , q5_1 , q4_1 .
|
11 |
+
To run these models, you can go to [this page](https://github.com/leejet/stable-diffusion.cpp) to download the code or run this command
|
12 |
+
```
|
13 |
+
git clone --recursive https://github.com/leejet/stable-diffusion.cpp.git
|
14 |
+
```
|
15 |
+
\
|
16 |
+
And then compile it just as the instructions on the github page. \
|
17 |
+
Finally,run
|
18 |
+
```
|
19 |
+
./sd -m '/model/stable_diffusion-ema-pruned-v2-1_768.q8_0.gguf' -p "a lovely cat" -s -1
|
20 |
+
```
|
21 |
+
. Then you can see the 'output.png'.
|