ATRIUMsearch → argument graph
Article · 2026-07-27 · 6 moments

How NVIDIA Builds Open Models for the Age of AI

Bryan Catanzaro, VP of Applied Deep Learning Research at NVIDIA, walked us through how his team builds the company’s open models, the reasoning behind their architecture, and why NVIDIA open-sources so much of it. ✦ AI generated

01
Mechanism

A hybrid architecture combining Mamba state-space layers with attention layers and mixture-of-experts makes models both fast and capable — Mamba provides efficient global context at linear cost, attention supplies pinpoint recall, and MoE gives large total capacity at low per-token cost.

NVIDIA hybridizes mostly-Mamba layers (linear cost, constant memory, billion-token context windows) with a few attention blocks (exact recall of buried facts) plus MoE (activates only a subset of parameters per token, enabling large models at low per-token cost).

transcript

Bryan Catanzaro: A hybrid architecture swaps most of the attention layers in the Transformer with Mamba layers and keeps a few blocks with full attention. NVIDIA's models rely on the same hybrid pattern. Most of the layers are Mamba, which keeps long inputs cheap to process and is what makes a million-token context window practical rather than just theoretical. A few attention layers are placed in between to restore the pinpoint recall that Mamba gives up, so the model can still retrieve exact details from anywhere in the context. On top of the hybrid design, the models also use mixture-of-experts, or MoE, layers. An MoE layer consists of many small expert layers and routes each token to only a few of them. So instead of running every parameter on every token, the model activates only a small subset of its parameters. That allows us to use a large total capacity at a low per-token cost, which keeps the model fast.

provides context · 1supports · 1

02
Mechanism

NVIDIA co-designs its GPUs and models together — training in 4-bit NVFP4 from the start because Blackwell was built for fast 4-bit math — and the real bottleneck for better models is not data or compute but the diversity of reinforcement learning training environments.

NVIDIA trained Nemotron in 4-bit precision from the first step because Blackwell GPUs were designed for fast 4-bit math, avoiding the accuracy loss of post-training quantization. For capability, the team scales RL across over a million rollouts, and Bryan identifies environment diversity — not data or compute — as the true bottleneck.

transcript

Bryan Catanzaro: Its larger models are pretrained in a 4-bit number format called NVFP4, meaning most of the math during training uses just four bits per value. Fewer bits means less memory and less data to move, so the math runs faster and on less power. Note that four bits is very little precision. Most teams train in higher precision and only shrink the model afterward, which loses accuracy. NVIDIA trained in 4 bits from the first step because it knew its next GPU generation, Blackwell, was being built with fast 4-bit hardware. The model and the chip were designed for each other. The first step to inventing something amazing is believing that you can. With those efficiency choices in place, post-training is where the model gains its capability. Scaling up this reinforcement learning stage has been shown to improve a model's capability significantly. Because its models are cheaper to run, it can scale RL at a lower cost, letting the model practice across many environments in parallel and learn from over a million rollouts. This is where the VP placed the real bottleneck for better models. Not data or compute. The diversity of these training environments.

03
Context

NVIDIA is the largest publisher of open AI models in the world, with a lineup spanning reasoning, physical AI, robotics, healthcare, autonomous driving, quantum computing, and weather forecasting.

NVIDIA's open model ecosystem goes beyond chatbots to include Nemotron (reasoning), Cosmos (world models for physical AI), GR00T (humanoid robots), Alpamayo (self-driving), BioNeMo (drug discovery), Ising (quantum computing), and Earth-2 (weather/climate).

transcript

Bryan Catanzaro: You probably know NVIDIA sells GPUs. But did you know it is also the largest publisher of open AI models in the world? Its models rank among the most downloaded on Hugging Face, and the lineup goes way beyond chatbots: reasoning models, world models, models for humanoid robots, self-driving cars, even drug discovery, quantum computing, and global forecasting.

explains mechanism · 2extends · 1

04
Claim

NVIDIA open-sources its models because it needs to understand AI deeply to build the right hardware, and because its business grows whenever AI grows — this is a long-term strategy, not a science project or charity, and NVIDIA expects it to pay off the way CUDA did after a decade.

Bryan gives two reasons: first, NVIDIA must build models itself to truly know where AI is going and design the right chips, and releasing openly keeps the work honest instead of self-deceptive. Second, NVIDIA grows when AI grows — every team building on open models becomes a potential compute customer, so supporting the ecosystem is good business. He compares the strategy to CUDA, which took over a decade to become foundational, and states: 'This is not a science project, and it is not charity. It is how NVIDIA moves itself forward into the future.'

transcript

Bryan Catanzaro: The first is that NVIDIA needs to understand AI deeply to build the right hardware for it. To design future chips, you have to know where AI is going. The best way to really know is to build models yourself and put them in front of real users. A model kept private is easy to fool yourself about, so releasing it openly keeps the work honest and keeps NVIDIA's researchers connected to the wider community they learn from. The second reason is about the business. NVIDIA grows whenever AI grows. Its goal is to support the ecosystem, not to compete with the companies building on top of it. Every team that adopts open models and builds its own AI can become a future customer for compute. So the company would rather hand the ecosystem the models and let the world's demand for AI pull its business forward. The VP pointed to CUDA, which took more than a decade before the rest of the world understood why it mattered. NVIDIA stuck with it, and it became the foundation of the company. He expects open models to follow the same path. As he put it, this is not a science project, and it is not charity. It is how NVIDIA moves itself forward into the future.

05
Definition

NVIDIA publishes the training data, tools, recipes, and environments alongside its models — Nemotron is not just weights but the full reproducible stack — and this is what makes a model genuinely open.

Bryan distinguishes NVIDIA's approach from labs that release only weights: NVIDIA publishes training datasets, post-training datasets, RL environments, and the full recipe to reproduce the work. The company even shares synthetic 'persona' data that is statistically realistic but fully private. This openness has spawned hundreds of community fine-tunes and derivatives.

transcript

Bryan Catanzaro: Nemotron is not just a model. It is also the data, the tools, the training recipes, and the ideas published in the papers. The finished weights are just the last step. In practice that means NVIDIA publishes the training datasets, the post-training datasets, the reinforcement learning environments, and the recipes needed to reproduce the work. A team can not only run the model, but also see how it was built and train their own version. Releasing data at this scale is unusual. It is a scary thing for a company to do. NVIDIA does it anyway, and even shares clever building blocks like synthetic 'persona' data that is statistically realistic but fully private, so a model can learn about the world without memorizing real people. You can see this in what the community has done with it. NVIDIA's open data and models have spawned a large set of community fine-tunes and derivatives. One of its robotics datasets became one of the most-downloaded datasets on Hugging Face. Many variants of its Nemotron models have millions of downloads each, and the Nemotron family recently crossed 100M in total. You cannot build like that from the weights alone.

provides context · 1

06
Claim

The fastest model is the smartest model because speed compounds into capability at every stage — a faster model trains on more data, post-trains across more environments, and thinks longer on hard problems at the same cost.

Bryan argues that pursuing speed and pursuing the frontier are the same goal: a faster model trains on more data in the same time, practices in more environments during post-training, and allocates more inference compute to hard problems, making speed compound into capability.

transcript

Bryan Catanzaro: The fastest model is the smartest model. A faster model can be trained on more data in the same amount of time. It can be post-trained across more environments. Once deployed, it can think for longer on a hard problem at the same cost. So speed translates into capability and compounds at every stage.

Highlight slides
Related episodes