NVIDIA · usage rank #5 · released 2026-06-04
NVIDIA-Nemotron-3-Ultra-550B-A55B
What NVIDIA-Nemotron-3-Ultra-550B-A55B’s own documents say it is built from — every method with the sentence that describes it.
Curator’s note550B total / 55B active LatentMoE hybrid Mamba-2 + attention, 1M context, OpenMDW-1.1 (weights + training data + recipes). Best-documented model in this set: a real technical report plus an arXiv mirror.
Rank by open-weight tokens on OpenRouter, week of 2026-09-21.
Against the consensus recipe
Its documents state 10 of the 15 methods the field agrees on.
The recipe from the overview: the methods the most labs adopt, per stage. A missing one is something the documents do not say, not something the model lacks.
Data curation
- Agentic data synthesis pipelinenot in its documents
Training objective
- Multi-Token Predictionnot in its documents
- KL alignment lossnot in its documents
Model architecture
- Mixture of Expertscore
- Hybrid Attentionnot in its documents
- Multi-Token Predictioncore
Optimization
- Muonnot in its documents
- Expert Parallelismused
- Cosine decayused
Post-training
Inference & serving
Checked in its code
Its code shows 7 of the 19 architecture features checked — 3 of them are not stated in its documents.
Documents say what a lab chose to describe; the modeling code says what the checkpoint runs. Each feature below was put to a code verifier, and only the config values and source lines it cited that were found in the files are shown, linked to the line.
Read from Hugging Face Transformers (modeling_nemotron_h.py, configuration_nemotron_h.py) and config.json at revision 77df655d5e, by anthropic/claude-sonnet-5 on 2026-09-25.
| Feature | Code | Its documents | Evidence |
|---|---|---|---|
| Grouped-query attention code only | in its code | not stated | Full-attention layers use 64 query heads with only 2 key/value heads, repeated via repeat_kv (grouped-query attention). num_attention_heads = 64num_key_value_heads = 2 |
| Multi-head latent attention | not in its code | not stated | The attention module is a standard multi-head/GQA attention with separate q/k/v projections; there is no low-rank KV latent projection or decoupled RoPE key mechanism. |
| Sliding-window attention | not in its code | not stated | sliding_window is null in the config and the attention code has no window-masking mechanism applied. sliding_window = null |
| Interleaved sliding-window and global attention | not in its code | not stated | layers_block_type only distinguishes mamba/moe/attention layers with full causal masks; there is no sliding-window layer type interleaved with global attention. sliding_window = null |
| Indexer-selected sparse attention (DeepSeek Sparse Attention) | not in its code | not stated | No indexer-based top-k token selection mechanism exists in the code, and no index_topk/index_n_heads config keys are present. |
| Linear-attention or state-space layers alongside full attention code only | in its code | not stated | layers_block_type interleaves mamba (linear_attention) layers with full_attention and moe layers, dispatched via MIXER_TYPES. layers_block_type = ["mamba", "moe", "mamba", "moe", "mamba", "moe", "mamba", "attention", "moe",… |
| Gated DeltaNet layers | not in its code | not stated | The recurrent layers implement the Mamba-2 selective SSM (chunked scan with segment sums), not a gated delta-rule mixer like Gated DeltaNet or Kimi Delta Attention. |
| Mamba-2 layers | in its code | core | Linear-attention layers are implemented as NemotronHMamba2Mixer, a Mamba-2 SSD block with per-head scalar decay (A_log/D), chunked scan, and mamba_num_heads=256, ssm_state_size=128. mamba_num_heads = 256ssm_state_size = 128 |
| Learnable attention sink | not in its code | not stated | No learned per-head sink logit is added to the attention softmax denominator anywhere in the attention code. |
| Gated attention output | not in its code | not stated | The attention module's output goes directly to o_proj with no sigmoid gating multiplication; gating is only used in the Mamba mixer's RMSNormGated, not in softmax attention output. |
| QK normalization | not in its code | not stated | NemotronHAttention computes q/k/v projections and applies no normalization to query or key states before the dot product. |
| Partial RoPE | code unclear | not stated | partial_rotary_factor is set to 1.0 (full rotary) but the attention forward code shown does not actually call apply_rotary_pos_emb or reference rotary embeddings at all, making the RoPE application path itself unclear from the given files. partial_rotary_factor = 1.0 |
| YaRN RoPE scaling | not in its code | not stated | No rope_scaling key is present in config.json, and no YaRN-specific scaling code path is invoked. |
| Layers without positional encoding (NoPE) | code unclear | not stated | The attention layer's forward pass does not show any RoPE application (no apply_rotary_pos_emb call visible in NemotronHAttention.forward), so it is unclear from the given code whether some full-attention layers omit position encoding while others include it. |
| Mixture of experts | in its code | core | MoE layers route tokens to a subset of 512 routed experts via a top-k router selecting 22 experts per token. n_routed_experts = 512num_experts_per_tok = 22 |
| Shared expert | in its code | used | Each MoE block includes a shared expert MLP (NemotronHMLP with moe_shared_expert_intermediate_size=10240, n_shared_experts=1) applied to every token in addition to routed experts. n_shared_experts = 1moe_shared_expert_intermediate_size = 10240 |
| Auxiliary-loss-free load balancing (selection bias) code only | in its code | not stated | The router adds e_score_correction_bias to the sigmoid scores solely to determine top-k expert selection (via topk_group/group masking), while the unbiased scores are gathered for the actual output weights. |
| Multi-token prediction layers | in its code | core | The config declares num_nextn_predict_layers=1 with mtp_layers_block_type set, and the modeling code has weight-skip handling for MTP module keys. num_nextn_predict_layers = 1mtp_layers_block_type = ["attention", "moe"] |
| SwiGLU feed-forward | not in its code | not stated | MLP and expert feed-forwards use a single up_proj/down_proj pair with a relu2 activation (act(up(x)) then down_proj), not a SiLU-gated gate/up product. mlp_hidden_act = "relu2" |
model architecture 19
token mixer 7
softmax attention 1
sparse attention 1
fixed-pattern sparse attention 1
linear attention & state space 3
channel mixer 8
mixture of experts 8
fine-grained experts 1
training objective 7
language modelling objective 1
multi-token prediction objective 3
distillation objective 2
auxiliary loss 1
optimization 29
learning-rate schedule 3
training precision 9
quantization-aware training 2
training stability 1
training parallelism 5
training runtime 9
data curation 21
filed at the root 1
data sourcing 7
data filtering 5
deduplication 2
synthetic data 3
data mixture & curriculum 2
sequence packing 1
post-training 30
supervised fine-tuning 4
reinforcement learning algorithm 9
reward modelling 3
preference optimization 1
policy distillation 6
rollout & RL infrastructure 3
agentic post-training 2
mid-training & continual pretraining 2
inference & serving 49
decoding strategy 5
reasoning control 7
KV cache management 4
inference quantization 20
serving parallelism 4
inference scheduling 3
inference kernel 2
context management 2
agentic scaffolding 2
software implementation 26
filed at the root 2
inference engine 4
training framework 4
kernel & quantization library 6
evaluation 15
benchmark 8
evaluation harness 3
human & real-world evaluation 2
unfiled 12
Further reading
Picked by hand, not extracted: where to read more, not evidence for anything on this page.
- NVIDIA-Nemotron-3-Ultra-550B-A55B architecture card — LLM Architecture Gallery explainer sebastianraschka.com
Sources
The curated document list for this model. "not fetched" means the URL is recorded but its text was not read in the current run.
| Document | Kind | Publisher | Status |
|---|---|---|---|
| research.nvidia.com/labs/nemotron/files/NVIDIA-Nemotron-3-Ultra-Technic… | technical report | NVIDIA | read |
| arxiv.org/abs/2606.15007 | technical report | NVIDIA | read |
| research.nvidia.com/labs/nemotron/Nemotron-3-Ultra | official blog | NVIDIA Research | read |
| nvidianews.nvidia.com/news/nvidia-debuts-nemotron-3-family-of-open-mode… | official blog | NVIDIA Newsroom | read |
| huggingface.co/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16 | model card | NVIDIA | read |
| build.nvidia.com/nvidia/nemotron-3-ultra-550b-a55b/modelcard | vendor docs | NVIDIA | read |
| artificialanalysis.ai/articles/nvidia-nemotron-3-ultra-released | third party analysis | Artificial Analysis | read |