Aster
commited on
Commit
ยท
8c23e20
1
Parent(s):
444567a
๐ Upload anything-v4.5-fp16 models
Browse files
anything-v4.5-fp16/diffusers.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"pipeline": "stable-diffusion", "framework": "onnx", "tokenizer": {"type": "CLIPTokenizer", "path": "tokenizer.json", "model-max-length": 77, "bos-token": 49406, "eos-token": 49407}, "feature-extractor": {"resample": 3, "size": 224, "crop": [224, 224], "crop-center": true, "rgb": true, "normalize": true, "resize": true, "image-mean": [0.48145466, 0.4578275, 0.40821073], "image-std": [0.26862954, 0.26130258, 0.27577711]}, "text-encoder": {"path": "text_encoder.onnx"}, "unet": {"path": "unet.onnx"}, "vae": {"encoder": "vae_encoder.onnx", "decoder": "vae_decoder.onnx"}, "hashes": {"text-encoder": "f4ecc27546d38ab39278e2a9deb5a860", "unet": "fd86c9b5064adae78be7cccb4a90f582", "vae-encoder": "c2c5d120977ed040325ad13e679c7abd", "vae-decoder": "8f8ea12fd38f21f9ec11040f7162d2cb", "safety-checker": null}}
|
anything-v4.5-fp16/text_encoder.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0423b8284192bd138e68f56cae1248bb6c7fe141d42bae4b2b34fcc9744eb57f
|
3 |
+
size 246462068
|
anything-v4.5-fp16/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
anything-v4.5-fp16/unet.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63ca8a666a867fd48d104f730db82044bca7755afc995256f7ded2af6a8eb7bc
|
3 |
+
size 1722958717
|
anything-v4.5-fp16/vae_decoder.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b927f9c0acd0a2362226fccc8858c6c8edcd91f62ce504963d1b9bdde5fda57
|
3 |
+
size 99108623
|
anything-v4.5-fp16/vae_encoder.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3f9b44322e36eef6c342e12d38e4d6b9cfc22d0890f5bfe61abfc902e1fe0585
|
3 |
+
size 68444866
|
convert.sh
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
# anything-v4.0-fp16
|
2 |
rm -rf ./anything-v4.0-fp16
|
3 |
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.0-pruned-fp16.safetensors -ci
|
@@ -5,4 +9,4 @@ python scripts/sd2pyke.py ./anything-v4.0-pruned-fp16.safetensors ./anything-v4.
|
|
5 |
# anything-v4.5-fp16
|
6 |
rm -rf ./anything-v4.5-fp16
|
7 |
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.5-pruned-fp16.ckpt -ci
|
8 |
-
python scripts/sd2pyke.py ./anything-v4.
|
|
|
1 |
+
# anything-v3.0-fp16
|
2 |
+
rm -rf ./anything-v3.0-fp16
|
3 |
+
wget https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/anything-v3.0-pruned-fp16.safetensors -ci
|
4 |
+
python scripts/sd2pyke.py ./anything-v3.0-pruned-fp16.safetensors ./anything-v3.0-fp16 --fp16 -C v1-inference.yaml
|
5 |
# anything-v4.0-fp16
|
6 |
rm -rf ./anything-v4.0-fp16
|
7 |
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.0-pruned-fp16.safetensors -ci
|
|
|
9 |
# anything-v4.5-fp16
|
10 |
rm -rf ./anything-v4.5-fp16
|
11 |
wget https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.5-pruned-fp16.ckpt -ci
|
12 |
+
python scripts/sd2pyke.py ./anything-v4.5-pruned-fp16.ckpt ./anything-v4.5-fp16 --fp16 -C v1-inference.yaml
|