bloomer010 commited on
Commit
cc923f2
·
verified ·
1 Parent(s): 5982011

Add UD-Q6_K_XL and UD-Q8_K_XL quants

Browse files
.gitattributes CHANGED
@@ -44,3 +44,5 @@ Ling-3.0-tiny-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
44
  Ling-3.0-tiny-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
45
  Ling-3.0-tiny-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
46
  Ling-3.0-tiny-imatrix.gguf filter=lfs diff=lfs merge=lfs -text
 
 
 
44
  Ling-3.0-tiny-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
45
  Ling-3.0-tiny-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
46
  Ling-3.0-tiny-imatrix.gguf filter=lfs diff=lfs merge=lfs -text
47
+ Ling-3.0-tiny-UD-Q6_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
48
+ Ling-3.0-tiny-UD-Q8_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
Ling-3.0-tiny-UD-Q6_K_XL.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de5734f3a9aa71e97d92653b11c5953a39c4877d6d368474af2d80ef51bfbb34
3
+ size 7274546304
Ling-3.0-tiny-UD-Q8_K_XL.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fefbf341330722c97d10f7ce90a9b494663269911ba0d1fc3dbe50f43693e25
3
+ size 11188839264
README.md CHANGED
@@ -29,7 +29,9 @@ Upstream PR: https://github.com/ggml-org/llama.cpp/pull/26608
29
  | Quant | Size |
30
  | --- | ---: |
31
  | BF16 | 15.8 GB |
 
32
  | Q8_0 | 8.41 GB |
 
33
  | Q6_K | 6.50 GB |
34
  | Q5_K_M | 5.64 GB |
35
  | Q5_K_S | 5.48 GB |
@@ -49,6 +51,12 @@ IQ2_M was generated with a model-specific importance matrix:
49
  - 51,200 calibration tokens total
50
  - 332 matrix entries
51
 
 
 
 
 
 
 
52
  ## Architecture
53
 
54
  - 7.9B total parameters and 1.3B active parameters per token
@@ -64,6 +72,7 @@ IQ2_M was generated with a model-specific importance matrix:
64
  - CPU and CUDA architecture tests passed
65
  - BF16, Q8_0, Q6_K, Q4_K_M, and MXFP4_MOE loaded and generated tokens with CUDA
66
  - Q1_0, IQ2_M, Q3_K_M, Q5_K_S, and Q5_K_M passed CPU-only prompt processing and token generation tests
 
67
  - CUDA testing used an RTX 4070 and RTX 3060
68
 
69
  ## Build
 
29
  | Quant | Size |
30
  | --- | ---: |
31
  | BF16 | 15.8 GB |
32
+ | UD-Q8_K_XL | 11.19 GB |
33
  | Q8_0 | 8.41 GB |
34
+ | UD-Q6_K_XL | 7.27 GB |
35
  | Q6_K | 6.50 GB |
36
  | Q5_K_M | 5.64 GB |
37
  | Q5_K_S | 5.48 GB |
 
51
  - 51,200 calibration tokens total
52
  - 332 matrix entries
53
 
54
+ ## XL Quantization Recipes
55
+
56
+ `UD-Q8_K_XL` uses Q8_0 for the main expert gate and up tensors. Token embeddings, expert down projections, attention and Q-LoRA projections, and KDA projections remain BF16.
57
+
58
+ `UD-Q6_K_XL` uses Q6_K for the main expert gate and up tensors. Token embeddings, output weights, expert down projections, attention and Q-LoRA projections, and KDA projections use Q8_0. It was generated with the importance matrix described above.
59
+
60
  ## Architecture
61
 
62
  - 7.9B total parameters and 1.3B active parameters per token
 
72
  - CPU and CUDA architecture tests passed
73
  - BF16, Q8_0, Q6_K, Q4_K_M, and MXFP4_MOE loaded and generated tokens with CUDA
74
  - Q1_0, IQ2_M, Q3_K_M, Q5_K_S, and Q5_K_M passed CPU-only prompt processing and token generation tests
75
+ - UD-Q6_K_XL and UD-Q8_K_XL passed CPU-only prompt processing and token generation tests
76
  - CUDA testing used an RTX 4070 and RTX 3060
77
 
78
  ## Build