Views
No views yet
ValueError: quant_method: "modelopt" ... # no loader in transformers 5.6 or 5.15AutoModelForCausalLM path: no LoRA, no finetune, no logit inspection, no
generate() for a quick evaluation. Anything that starts with loading the model in Python
starts by needing these weights instead.ValueError: Current platform does not support NVFP4 quantization. Please use Blackwell and
above. # SGLang, get_min_capability() == 100RuntimeError: The NVIDIA driver on your system is too old (found version 12020)ImportError: /lib64/libm.so.6: version `GLIBC_2.29' not found
(required by .../vllm/_moe_C.abi3.so)vllm/_C needs only 2.14 and loads, so a dense model serves perfectly and a
30B-A3B mixture-of-experts dies partway through its first forward pass. The fix is a
container — which is easier to justify once the weights are in a format the engine inside it
can read without a driver upgrade too.| routed and shared experts | NVFP4 W4A16 (uint8 nibble pairs, e4m3 group scales, fp32 global scale, group size 16) → bf16 |
mamba in_proj/out_proj | FP8 per-tensor → bf16 |
| everything else | passed through unchanged |
| per-expert 2-D tensors | stacked into the fused [n_experts, out, in] layout transformers expects |
backbone.* names | remapped to model.* |
| MTP layers | kept — 270 mtp.* tensors, dequantised like the rest |
dequant_manifest.json records the source path, shard and byte counts, the tensor count, the
FP4 E2M1 table and the nibble order, so you can confirm you are looking at the same rebuild.
The nibble unpacking is bit-exact against compressed-tensors' reference implementation.dequantize_nemotron_nvfp4.py —
about ten minutes on CPU, ~20 GiB of RAM — so you can also rebuild it yourself from NVIDIA's
checkpoint rather than trusting this upload.bias.md, explainability.md, privacy.md, safety.md here, and
their model card
for the numbers.Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.LICENSE and travels with any further distribution, along with the
notices of origin above — which is what that agreement asks of anyone redistributing a
portion of the Model Materials.1vllm serve PursuitOfDataScience/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-BF16 \
2 --max-model-len 32768 \
3 --reasoning-parser nemotron_v3 \
4 --tool-call-parser qwen3_coder --enable-auto-tool-choicenemotron_v3 is named on newer vLLM; on 0.11.2 the equivalents are --reasoning-parser deepseek_r1 (this chat template opens the thinking block itself, so the output carries
</think> and never <think>) with the same tool parser. An end-to-end deployment of this
checkpoint — engine, OpenAI-compatible gateway and a chat UI — is at
PursuitOfDataScience/manual-api.