Upload folder using huggingface_hub
Browse files- .gitattributes +6 -0
- Qwen2.5-1.5B-Instruct.f16.gguf +3 -0
- Qwen2.5-1.5B-Instruct.q5_k.gguf +3 -0
- Qwen2.5-1.5B-Instruct.q6_k.gguf +3 -0
- Qwen2.5-1.5B-Instruct.q8_0.gguf +3 -0
- Qwen2.5-1.5B-Instruct.q8_p.gguf +3 -0
- Qwen2.5-1.5B-Instruct.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 |
+
Qwen2.5-1.5B-Instruct.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
37 |
+
Qwen2.5-1.5B-Instruct.q5_k.gguf filter=lfs diff=lfs merge=lfs -text
|
38 |
+
Qwen2.5-1.5B-Instruct.q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
39 |
+
Qwen2.5-1.5B-Instruct.q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
40 |
+
Qwen2.5-1.5B-Instruct.q8_p.gguf filter=lfs diff=lfs merge=lfs -text
|
41 |
+
Qwen2.5-1.5B-Instruct.q8q4.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen2.5-1.5B-Instruct.f16.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b6eaec3509f1d0373d1f4802654c4a7bfcde0768645d2d45e8885f6922b428ee
|
3 |
+
size 3093669376
|
Qwen2.5-1.5B-Instruct.q5_k.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:084e079b58e29367117695c1a7d6551f326e68562130810a5fb2b7a532de91d6
|
3 |
+
size 1400358400
|
Qwen2.5-1.5B-Instruct.q6_k.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ff61a38a5ee373d8395a893aae4c3ca911af49615ee6be2892a935228bea819b
|
3 |
+
size 1548047872
|
Qwen2.5-1.5B-Instruct.q8_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d36cbe54bf264f578d1c8b424de40209f3c8cd6ac4e59de070378063ce78153a
|
3 |
+
size 1865360896
|
Qwen2.5-1.5B-Instruct.q8_p.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0e50ecaa073bb20a4a9131afc3f8292d71c3164bc8161c6172548050c9b8eb78
|
3 |
+
size 1646573056
|
Qwen2.5-1.5B-Instruct.q8q4.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d3cee9d0638c31b53f0199661b1e8e8aa516593f881761a4be2688102e1a359e
|
3 |
+
size 1042568704
|
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: Fri Oct 25, 11:03:03
|