Aster commited on
Commit ·
50e92f8
1
Parent(s): ec767b6
🔮 Add conversion script
Browse files- .gitignore +1 -0
- convert.sh +42 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.idea/
|
convert.sh
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# aom-v1.0-safe-fp16
|
| 2 |
+
rm -rf ./aom-v1.0-safe-fp16
|
| 3 |
+
wget https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix/AbyssOrangeMix_base.ckpt -c
|
| 4 |
+
python scripts/sd2pyke.py ./AbyssOrangeMix.safetensors ./aom-v1.0-safe-fp16 --fp16 -C v1-inference.yaml
|
| 5 |
+
# aom-v1.0-soft-fp16
|
| 6 |
+
rm -rf ./aom-v1.0-soft-fp16
|
| 7 |
+
# aom-v1.0-hardcore-fp16
|
| 8 |
+
rm -rf ./aom-v1.0-hard-fp16
|
| 9 |
+
wget https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix/AbyssOrangeMix.safetensors -c
|
| 10 |
+
python scripts/sd2pyke.py ./AbyssOrangeMix.safetensors ./aom-v1.0-hard-fp16 --fp16 -C v1-inference.yaml
|
| 11 |
+
# aom-v2.0-safe-fp16
|
| 12 |
+
rm -rf ./aom-v2.0-safe-fp16
|
| 13 |
+
# aom-v2.0-soft-fp16
|
| 14 |
+
rm -rf ./aom-v2.0-soft-fp16
|
| 15 |
+
# aom-v2.0-hardcore-fp16
|
| 16 |
+
rm -rf ./aom-v2.0-hard-fp16
|
| 17 |
+
wget https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/Pruned/AbyssOrangeMix2_hard_pruned_fp16_with_VAE.safetensors -c
|
| 18 |
+
python scripts/sd2pyke.py ./AbyssOrangeMix2_hard_pruned_fp16_with_VAE.safetensors ./aom-v2.0-hard-fp16 --fp16 -C v1-inference.yaml
|
| 19 |
+
# aom-v3.0-hardcore-fp16
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
wget https://huggingface.co/swl-models/anything-v2.1/resolve/main/anything-V2.1-pruned-fp16.safetensors -ci
|
| 30 |
+
python scripts/sd2pyke.py ./anything-V2.1-pruned-fp16.safetensors ./anything-v2.1-fp16 --fp16 -C v1-inference.yaml
|
| 31 |
+
# anything-v3.0-fp16
|
| 32 |
+
rm -rf ./anything-v3.0-fp16
|
| 33 |
+
wget https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/anything-v3.0-pruned-fp16.safetensors -ci
|
| 34 |
+
python scripts/sd2pyke.py ./anything-v3.0-pruned-fp16.safetensors ./anything-v3.0-fp16 --fp16 -C v1-inference.yaml
|
| 35 |
+
# anything-v4.0-fp16
|
| 36 |
+
rm -rf ./anything-v4.0-fp16
|
| 37 |
+
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.0-pruned-fp16.safetensors -ci
|
| 38 |
+
python scripts/sd2pyke.py ./anything-v4.0-pruned-fp16.safetensors ./anything-v4.0-fp16 --fp16 -C v1-inference.yaml
|
| 39 |
+
# anything-v4.5-fp16
|
| 40 |
+
rm -rf ./anything-v4.5-fp16
|
| 41 |
+
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.5-pruned-fp16.ckpt -ci
|
| 42 |
+
python scripts/sd2pyke.py ./anything-v4.5-pruned-fp16.ckpt ./anything-v4.5-fp16 --fp16 -C v1-inference.yaml
|