Views
No views yet
groxaxo.
It is intended for open-source evaluation, reproducible experimentation, and compatible local or
hosted inference workflows. The wording below is deliberately limited to what can be verified
from this repository's metadata and artifacts.| Field | Details |
|---|---|
| Format | GGUF |
| Source / base | wangzhang/Qwen3.5-122B-A10B-abliterix |
| Intended task | text-generation |
| License | apache-2.0 |
*.gguf (2 files).gguf file that fits your available memory, then run it with a current llama.cpp
build:1llama-cli \
2 -m /path/to/model.gguf \
3 -p "Write a concise technical summary."| Aspect | Standard (e.g. Q4_K_M) | UD Quantization |
|---|---|---|
| Tensor types | One type for all (or a fixed pattern) | Each tensor gets its own type |
| Precision allocation | Uniform | Adaptive per tensor role |
| Importance matrix | Optional (general guidance) | Used to optimize k-quant block selection |
| Expert tensors | Same type as all others | Can be individually tuned |
attn_qkv, attn_gate, attn_q, attn_k, attn_v, attn_output): Quantized to Q8_0 — attention projections are highly sensitive to precision loss and benefit from near-lossless compression.ffn_up_exps, ffn_gate_exps): Quantized to Q4_K — these are the largest tensors in the model (256 experts x 3072x1024 each) and dominate the model size. Q4_K provides an excellent size/quality tradeoff for activation functions.ffn_down_exps): Quantized to Q5_K — the down-projection is slightly more sensitive than up/gate, so Q5_K preserves more information here.ffn_down_shexp, ffn_up_shexp, ffn_gate_shexp, ffn_gate_inp_shexp): Quantized to Q8_0 — the shared expert processes every token, making it critical for quality.ffn_gate_inp, ffn_gate_inp_shexp): Kept at F32 — the router decides which experts to activate. Even small precision errors here can cause misrouting, severely degrading output quality.ssm_a, ssm_conv1d, ssm_dt.bias, ssm_norm): Kept at F32 or Q8_0 — these are small tensors that play a structural role in the hybrid attention/SSM layers.attn_norm, post_attention_norm, output_norm): Kept at F32 — normalization layers are tiny but critical for numerical stability.token_embd.weight): Quantized to Q8_0.output.weight): Quantized to Q8_0.llama-imatrix. This guides the k-quant block selection within each tensor, prioritizing precision on the most activation-sensitive dimensions. The imatrix was computed at n_ctx=512 across multiple calibration chunks before the quantization run.llama-quantize from llama.cpp was used with --tensor-type-file to apply the per-tensor type map, combined with --imatrix for importance-weighted block selection within each quantized tensor.| Component | Size |
|---|---|
| This GGUF file | ~72 GB |
| Original BF16 GGUF | ~244 GB |
| Compression ratio | ~3.4x |
1llama-server -m Qwen3.5-122B-A10B-abliterix-UD-Q4_K_XL.gguf \
2 -ngl 999 \
3 -c 32768 \
4 -fa on \
5 --reasoning auto1llama-server -m Qwen3.5-122B-A10B-abliterix-UD-Q4_K_XL.gguf \
2 -ngl 999 \
3 -ts 24,24,12,12,24 \
4 -c 32768 \
5 -ctk q8_0 -ctv q8_0 \
6 -fa on \
7 --reasoning auto