Views
No views yet
| Change | Detail |
|---|---|
| Quantization | AWQ-INT4 on MLP only (attention, layer 0, MTP head, vision tower stay FP16). awq_marlin kernel. |
| Vocab pruning | Tied embed / lm_head pruned 248,320 → 131,101 tokens: keep contiguous IDs [0,131072) + all special/added tokens (remapped contiguously). This reduces parameters. |
| MTP head | Kept intact (native multi-token-prediction head preserved). |
| Benchmark | Threshold | Result |
|---|---|---|
| MMLU-Pro | ≥ 0.621 | PASS |
| IFEval | ≥ 0.814 | PASS |
| GPQA-Diamond (thinking) | ≥ 0.630 | PASS |
1# 1) download this checkpoint into ./qwen-awq-v128k/
2huggingface-cli download Teora/qwen3.5-4b-awq-v128k --local-dir qwen-awq-v128k
3
4# 2) build & serve via the pipeline repo
5git clone https://github.com/Teora/efficient-qwen-suffix-spec && cd efficient-qwen-suffix-spec
6docker build -f Dockerfile -t efficient-qwen-2nd:latest .
7docker run -d --gpus '"device=0"' -p 8080:8080 efficient-qwen-2nd:latest