Views
No views yet
Nota AI compressed Qwen3.5-122B-A10B — a Mixture-of-Experts (MoE) LLM shrunk with MoE-aware INT4 quantization and global expert pruning, retaining near-original quality while running comfortably on a single H100.
| Stage | Technique | Effect |
|---|---|---|
| Quantization | MoE-aware INT4 | Weights packed to 4-bit; expert layers quantized with MoE-specific calibration |
| Pruning | Global expert-sensitivity pruning, 15% removed | Experts removed by model-wide importance score, not a fixed per-block quota |
uv environment.1uv venv
2uv pip install vllm==0.22.0Required: vLLM 0.22.0
cp patch/qwen3_5.py /path/to/vllm/model_executor/models/qwen3_5.py1vllm serve nota-ai/Qwen3.5-122B-A10B-NotaCompression-INT4 \
2 --port 8000 \
3 --tensor-parallel-size 2 \
4 --max-model-len 262144 \
5 --reasoning-parser qwen31vllm serve nota-ai/Qwen3.5-122B-A10B-NotaCompression-INT4 \
2 --port 8000 \
3 --tensor-parallel-size 2 \
4 --max-model-len 262144 \
5 --reasoning-parser qwen3 \
6 --enable-auto-tool-choice \
7 --tool-call-parser qwen3_coder1vllm serve nota-ai/Qwen3.5-122B-A10B-NotaCompression-INT4 \
2 --tensor-parallel-size 1 \
3 --max-model-len 65536 \
4 --max-num-seqs 96 \
5 --gpu-memory-utilization 0.93💡 On a single 80 GB GPU, KV-cache is the main constraint. If you hitmax_num_seqs exceeds available Mamba cache blocks, lower--max-num-seqsor reduce--max-model-lento free cache.
| Model | MMLU-Pro (Knowledge) | AIME 24&25 (Math) | GPQA Diamond (STEM/Reasoning) | HumanEval (Coding) | BFCL-V3 (Agent) | Average |
|---|---|---|---|---|---|---|
| Qwen3.5-122B-A10B (BF16) | 86.42 | 93.33 | 85.35 | 94.51 | 95.00 | 90.92 |
| Intel INT4 | 85.97 | 91.67 | 82.32 | 93.90 | 93.33 | 89.44 (−1.63%) |
| Qwen Official INT4 | 85.92 | 93.33 | 84.34 | 89.63 | 93.42 | 89.33 (−1.75%) |
| ▶ Nota INT4 (this model) | 84.19 | 93.33 | 83.84 | 93.25 | 94.51 | 89.82 (−1.21%) |
Benchmarks: MMLU-Pro, AIME 2024 & 2025, GPQA Diamond, HumanEval, BFCL-V3. Percentages in parentheses are the average reduction relative to the original Qwen3.5-122B-A10B (BF16). This model shows the smallest average drop (−1.21%) among the compressed variants while being the smallest in size.
| Model | Weight Size (GB) | Reduction vs. BF16 |
|---|---|---|
| Qwen3.5-122B-A10B (BF16) | 250.17 | — |
| Intel INT4 | 76.71 | (−69.34%) |
| Qwen Official INT4 | 78.84 | (−68.49%) |
| ▶ Nota INT4 (this model) | 69.49 | (−72.22%) |
Weight Size is the on-disk size of the model tensors. Reduction is relative to the original Qwen3.5-122B-A10B (BF16, 250.17 GB).
1@article{park2026vsa,
2 title = {Value-and-Structure Alignment for Routing-Consistent Quantization of Mixture-of-Experts Models},
3 author = {Park, Hancheol and Lee, Geonho and Piao, Tairen and Kim, Tae-Ho},
4 journal = {arXiv preprint arXiv:2606.05688},
5 year = {2026},
6 url = {https://arxiv.org/abs/2606.05688}
7}
8
9@inproceedings{park2026dreammoe,
10 title = {DREAM-MoE: Downstream Routing Error-Aware Margin-Preserving Quantization for Mixture-of-Experts Large Language Models},
11 author = {Park, Hancheol and Lee, Geonho and Kim, Tae-Ho},
12 booktitle = {ICML 2026 Workshop on Adaptive Foundation Models (AdaptFM)},
13 year = {2026},
14 url = {https://openreview.net/forum?id=Wyhqwjl51A}
15}