
Summary
This episode explores why NVIDIA, despite being a chip company, invests heavily in building and releasing its own AI models like Nemotron. Bryan Catanzaro explains the strategic logic: NVIDIA uses models to better understand the future of AI systems while also strengthening the ecosystem that runs on its hardware. The conversation goes deep into technical choices behind Nemotron 3 Ultra, including NVFP4 four-bit pretraining, a hybrid Mamba/Transformer architecture, mixture-of-experts, multi-token prediction, and advanced post-training methods. It also covers how these techniques improve efficiency, long-context reasoning, and agentic workflows for tasks like coding and document analysis. Beyond the models themselves, the episode examines NVIDIA’s research organization, compute allocation process, and broader views on open vs. closed AI and the role of openness in safety.
Key Takeaways
- 1NVIDIA builds and releases AI models for both strategic insight and ecosystem support.
- 2Efficiency is becoming central to progress as AI training hits compute and power limits.
- 3Nemotron combines multiple architectural ideas to improve both quality and efficiency.
- 4Long context windows and multi-token prediction are practical enablers for agentic AI.
- 5Post-training is shifting toward combining specialized signals from multiple sources.
- 6NVIDIA’s research culture is mission-driven and resource-constrained, not purely top-down.
Notable Quotes
""We build tools. We build external organs that help us solve problems. We have an external stomach. We call it kitchen. Now we're creating an external brain.""
""We recently actually announced DLSS 5, which is a fully generative version of DLSS. And I'm so excited about it.""
""Neymotron Ultra and Super were pre-trained using four-bit arithmetic. We pre-trained those in NVFP4.""
""If you accept as a truth that we're going to be running at the limit, then what that means is that the way to get more intelligence is to be more efficient.""
""Nvidia is not structured according to an org chart. Um, we have one, but it's not actually the best way of understanding how we work.""
""We have a two week cycle where we review requests, and we review the budget, and then we make decisions, um, and kind of a hierarchical way.""
""I think that intelligence is just so incredibly multifaceted.""
""I think open technologies are generally safer, because there's more sunlight.""
Episode questions
Why does NVIDIA build and release its own AI models instead of only selling chips?
Bryan says Nemotron has two jobs: first, it helps NVIDIA understand how to build the systems of the future; second, it supports the broader ecosystem that uses NVIDIA hardware. In his view, better models improve NVIDIA's ability to design better chips and software.
Why is four-bit pretraining such a big deal?
Four-bit arithmetic reduces memory use, bandwidth, and energy consumption, which matters if AI is going to keep running at the limits of compute and power. Bryan notes that doing this during pretraining is much harder than using four-bit checkpoints for inference, because the training process can diverge if the numerics are mishandled.
How does the hybrid state-space plus Transformer architecture help Nemotron?
Bryan says the hybrid approach was found to improve perplexity and make the model smarter than either method alone. State-space models help with global sequence understanding and constant memory, while attention helps preserve exact information.
What does multi-token prediction improve in practice?
It lets the model predict several tokens at once, which can yield large speedups because the expensive part is often reading weights from memory rather than doing the math itself. Bryan says this can improve inference speed without hurting accuracy, since wrong tokens are checked on the next pass.