Upload folder using huggingface_hub
Browse files- .gitattributes +6 -0
- Qwen3-4B-abliterated.f16.gguf +3 -0
- Qwen3-4B-abliterated.q5_k.gguf +3 -0
- Qwen3-4B-abliterated.q6_k.gguf +3 -0
- Qwen3-4B-abliterated.q8_0.gguf +3 -0
- Qwen3-4B-abliterated.q8_p.gguf +3 -0
- Qwen3-4B-abliterated.q8q4.gguf +3 -0
- README.md +17 -0
.gitattributes
CHANGED
@@ -33,3 +33,9 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
Qwen3-4B-abliterated.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
37 |
+
Qwen3-4B-abliterated.q5_k.gguf filter=lfs diff=lfs merge=lfs -text
|
38 |
+
Qwen3-4B-abliterated.q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
39 |
+
Qwen3-4B-abliterated.q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
40 |
+
Qwen3-4B-abliterated.q8_p.gguf filter=lfs diff=lfs merge=lfs -text
|
41 |
+
Qwen3-4B-abliterated.q8q4.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-4B-abliterated.f16.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5d1a8c896e9833522996c15fc2234cb956479e1f3003f0ca302b4dcc314a0ab
|
3 |
+
size 8051284736
|
Qwen3-4B-abliterated.q5_k.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a29a4fd8168fca2955c053c4ea8c8e0dccebd3dd860147f2a600b6d130d43913
|
3 |
+
size 3348359936
|
Qwen3-4B-abliterated.q6_k.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:03d3ce1e1c5b4e62a72007ffb125f18bd3eb36acacc7f3e1410cfa9d536ecd38
|
3 |
+
size 3765107456
|
Qwen3-4B-abliterated.q8_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cf2c92b812497846559083a02e88c08d7e66e536fd50202814ef7504c3cc35b7
|
3 |
+
size 4645051136
|
Qwen3-4B-abliterated.q8_p.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:769177356b22bf003478506e9fec6546a31eacf28629192b77616a0a5b270081
|
3 |
+
size 4280404736
|
Qwen3-4B-abliterated.q8q4.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e40a807fbf41147ae8f52618e8960be1ab4893c3a79435ca26bfc876b130ce40
|
3 |
+
size 2591480576
|
README.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
license: mit
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
pipeline_tag: text-generation
|
7 |
+
---
|
8 |
+
|
9 |
+
My own (ZeroWw) quantizations.
|
10 |
+
output and embed tensors quantized to f16.
|
11 |
+
all other tensors quantized to q5_k or q6_k.
|
12 |
+
|
13 |
+
Result:
|
14 |
+
both f16.q6 and f16.q5 are smaller than q8_0 standard quantization
|
15 |
+
and they perform as well as the pure f16.
|
16 |
+
|
17 |
+
Updated on: Thu May 01, 09:19:58
|