Views
No views yet
nvidia/Nemotron-Orchestrator-8B,
produced with llm-compressor and
served with SGLang.nvidia/Nemotron-Orchestrator-8B is NVIDIA's ToolOrchestra orchestration model
(arXiv:2511.21689), itself a GRPO-RL fine-tune of
Qwen/Qwen3-8B. It routes a request across tools and expert models, reasoning in a
<think> block before answering. This quant exists to cut its VRAM footprint and
decode latency when it is co-tenanted on one GPU alongside larger models.nn.Linear modules (36 layers x 7) are quantized to 4-bit,
group size 128, W4A16_ASYM. lm_head is excluded and stays BF16 — the
embeddings are untied on this architecture, so lm_head is a real 151936 x 4096
matrix whose rounding error would land directly on the token logits that carry the
routing decision. embed_tokens also stays BF16. That is why the checkpoint is
~6.1 GB and not the ~4.1 GB a naive "8B at 4 bits" estimate suggests.| BF16 source | this quant | |
|---|---|---|
| checkpoint size | ~16.4 GB | 6.11 GB |
| time to first token | 32.9 ms | 23.4 ms |
| decode throughput | 153.0 tok/s | 269.3 tok/s |
| routing agreement vs BF16 | — | 0.90 (9/10 claims) |
| difficulty-score MAE vs BF16 | — | 0.09 |
"Lost is a French drama." the quant routes to direct_reply where BF16 routes to
cache_search. direct_reply answers from parametric memory with no retrieval at
all, which for a fact-checking pipeline is the worst way for a routing error to go.<think> block not observed on the sampled probes, where BF16 emitted one
averaging ~160 words. This was measured on a single sample per claim at temperature
0.1 and the generation still produced 341 output tokens, so it is not settled
whether the reasoning was lost or merely emitted untagged — untagged reasoning still
parses downstream. Treat it as an open question, not a confirmed regression.1python -m sglang.launch_server \
2 --model-path Feargal/Nemotron-Orchestrator-8B-AWQ-W4A16 \
3 --dtype bfloat16compressed-tensors quantization config is read from config.json; no
--quantization flag is needed.LICENSE in this repo. Section 3.3 limits the work and every derivative of it,
including this quant, to non-commercial use: "non-commercial research activities or
non-commercial research publications only". The base model card additionally states
it is for research and development only.