Aster
commited on
Commit
•
d5c69dd
1
Parent(s):
c05941f
🔮 Add conversion script
Browse files- .gitignore +1 -0
- README.md +7 -0
- convert.sh +26 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.idea/
|
README.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1 |
---
|
2 |
license: cc
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc
|
3 |
---
|
4 |
+
|
5 |
+
- Model for [pykeio/diffusers](https://github.com/pykeio/diffusers)
|
6 |
+
- Model from: [swl-models/anything-v2.1](https://huggingface.co/swl-models/anything-v2.1)
|
7 |
+
- Model from: [Linaqruf/anything-v3.0](https://huggingface.co/Linaqruf/anything-v3.0)
|
8 |
+
- Model from: [andite/anything-v4.0](https://huggingface.co/andite/anything-v4.0)
|
9 |
+
|
10 |
+
|
convert.sh
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# guo-feng-v1.0-fp16
|
2 |
+
rm -rf ./guo-feng-v1.0-fp16
|
3 |
+
wget https://huggingface.co/xiaolxl/Gf_style/resolve/main/Gf_style.safetensors -ci
|
4 |
+
python scripts/sd2pyke.py ./Gf_style.safetensors ./guo-feng-v1.0-fp16 --fp16 -C v1-inference.yaml
|
5 |
+
# guo-feng-v2.0-fp16
|
6 |
+
rm -rf ./guo-feng-v2.0-fp16
|
7 |
+
wget https://huggingface.co/xiaolxl/Gf_style2/resolve/main/GuoFeng2.safetensors -ci
|
8 |
+
python scripts/sd2pyke.py ./GuoFeng2.safetensors ./guo-feng-v2.0-fp16 --fp16 -C v1-inference.yaml
|
9 |
+
# guo-feng-v3.0-fp16
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
# anything-v3.0-fp16
|
16 |
+
rm -rf ./anything-v3.0-fp16
|
17 |
+
wget https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/anything-v3.0-pruned-fp16.safetensors -ci
|
18 |
+
python scripts/sd2pyke.py ./anything-v3.0-pruned-fp16.safetensors ./anything-v3.0-fp16 --fp16 -C v1-inference.yaml
|
19 |
+
# anything-v4.0-fp16
|
20 |
+
rm -rf ./anything-v4.0-fp16
|
21 |
+
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.0-pruned-fp16.safetensors -ci
|
22 |
+
python scripts/sd2pyke.py ./anything-v4.0-pruned-fp16.safetensors ./anything-v4.0-fp16 --fp16 -C v1-inference.yaml
|
23 |
+
# anything-v4.5-fp16
|
24 |
+
rm -rf ./anything-v4.5-fp16
|
25 |
+
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.5-pruned-fp16.ckpt -ci
|
26 |
+
python scripts/sd2pyke.py ./anything-v4.5-pruned-fp16.ckpt ./anything-v4.5-fp16 --fp16 -C v1-inference.yaml
|