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 | INT8 |
| Source / base | Qwen/Qwen3.6-27B |
| Intended task | image-text-to-text |
| License | apache-2.0 |
*.safetensors (11 files)config.jsongeneration_config.jsontokenizer.jsontokenizer_config.jsonprocessor_config.jsonchat_template.jinjaquantization_config.jsoncompressed-tensors (pack-quantized) format for direct loading in vLLM. The MTP
(multi-token-prediction) head is shipped and works for speculative decoding — see below.| Setting | Value |
|---|---|
| Scheme | W8A16 (weights INT8, activations FP16) |
| Algorithm | AutoRound RTN (--algorithm rtn, iters=0) |
| Group size | 128 |
| Symmetric | yes |
| Format | compressed-tensors / pack-quantized |
| AutoRound | 0.13.1 |
| Vision tower | left in original precision (not quantized) |
| MTP head | left in original precision + listed in quant ignore (see note) |
Linear layers are quantized to INT8 with group size 128. The visual
encoder blocks and the MTP head are kept at full precision, so the checkpoint stays
compatible with both multimodal and speculative-decoding paths in vLLM.1vllm serve groxaxo/Qwen3.6-27B-W8A16-AutoRound \
2 --tensor-parallel-size 2 \
3 --max-model-len 131072 \
4 --dtype half \
5 --reasoning-parser qwen3 \
6 --enable-auto-tool-choice \
7 --tool-call-parser qwen3_coder1vllm serve groxaxo/Qwen3.6-27B-W8A16-AutoRound \
2 --tensor-parallel-size 2 --dtype half \
3 --speculative-config '{"method":"mtp","num_speculative_tokens":2}'mtp.* layers in the quant ignore listmtp.* layers unquantized but does not add them to the
quantization_config.ignore list. Without that, vLLM builds the MTP drafter as a
W8A16 (Marlin) module, fails to match the plain-FP16 checkpoint weights
(Parameter ... not found in params_dict, skip loading), and the drafter runs with
garbage weights → 0 % acceptance.Linear names are present in the
ignore list of both config.json and quantization_config.json:mtp.fc
mtp.layers.0.self_attn.{q,k,v,o}_proj
mtp.layers.0.mlp.{gate,up,down}_projqkv_proj/gate_up_proj, so the individual shard names are
listed.) If you re-quantize this model yourself, apply the same edit. Note that vLLM's
torch.compile cache is not invalidated by per-layer quant-scheme changes — if you change
the ignore list on an already-booted model, rm -rf ~/.cache/vllm/torch_compile_cache
before restarting.