AI Research Breakthroughs from NVIDIA Research (Hosted by Karoly of Two Minute Papers) | NVIDIA GTC
ELI5/TLDR
Four NVIDIA researchers walk into a GTC panel and lay out the company’s bet on physical AI — self-driving cars that reason through decisions, simulated worlds built from data instead of artists, and robots that learn complex assembly tasks entirely in their imagination before touching a real bolt. The connective tissue across all four presentations is the same idea: stop hand-coding the world and let neural networks learn it from data. Everything they showed is open-source, which is the quiet headline nobody dwelt on long enough.
The Full Story
Teaching Models to Explore, Not Just Imitate
Yejin Choi (Senior Director of AI Research, also at Stanford and UW) opened with a clean framing of how large language models get built. The standard pipeline is pre-training on internet text, then fine-tuning on curated data, then reinforcement learning from human feedback. Think of it like learning to cook: first you read every recipe on the internet, then you study exam-style questions about cooking, and only at the very end do you actually get into a kitchen and experiment.
The problem is that the experimentation — the reinforcement learning step — only happens at the tail end. Choi’s group proposes something called RLP, or Reinforcement Learning as Pre-training. Instead of just predicting the next word during pre-training (the standard approach), the model is allowed to reason and explore even at that earliest stage. Imagine letting the student experiment in the kitchen from day one, not just after passing the written exam.
The results, she said, were “super surprising and exciting” across the board. The broader vision: the future of AI training is “explorative learning” — blurring the line between the imitation phase and the exploration phase.
Self-Driving Cars That Show Their Work
Marco Pavone (Director of Autonomous Vehicle Research) presented NVIDIA’s Alpamayo platform — an open ecosystem of models, simulation tools, and datasets for autonomous driving. The centrepiece is Alpamayo-1, a 10-billion-parameter model that doesn’t just drive but reasons through its decisions in plain English, then acts on those reasons.
The key innovation is something called reasoning-action consistency. Early versions had a problem Pavone described with a tennis analogy:
“Sometimes my brain has a sophisticated strategy about where I want to send the ball, but my body does something completely different. That’s embodiment misalignment.”
The model would say “I’ll stop at the red light” and then blow right through it. The reasoning and the driving were disconnected outputs. So they added a post-training alignment step that explicitly couples the two — forcing the model’s explanations and its actual driving to stay in sync. This serves double duty: better driving performance and a built-in safety signal, since you can now read what the car “thinks” and check whether it’s confident or confused.
The GTC announcement was Alpamayo-1.5, which adds text-prompt navigation (tell the car where to go in plain language) and post-training scripts so developers can fine-tune the model on their own data. Everything — models, code, datasets — is on Hugging Face and GitHub.
Simulating the World Without Artists
Sanja Fidler (VP of AI Research, Toronto AI Lab) traced the evolution of simulation for autonomous vehicles through three eras. The old way: graphics engines, basically video-game worlds. Want a new intersection in San Francisco? Wait two months for artists to build it. Low ceiling.
The second era: neural reconstruction. Record a real street with cameras, reconstruct it as a 3D environment using techniques like Gaussian splats. Much faster, but limited — the reconstructed world can only replay what was recorded. If the original car stopped three metres from a pedestrian, the simulation can’t tell you what would happen if it stopped ten centimetres away. The pedestrian’s reaction would be completely different.
The third era — the one NVIDIA is betting on — is generative simulation using world models. Think of it like the difference between photocopying a painting and learning to paint. A world model trained on massive visual data doesn’t just reconstruct; it generates entirely new scenarios. Rain. Snow. A mattress falling off a truck onto your car.
The concrete announcement: Alpamayo Dreams, a real-time interactive generative simulator. Last year’s COSMOS took minutes to generate seconds of video. Alpamayo Dreams runs in real time, simulates multiple cameras, and reacts to the driving policy in closed loop. NVIDIA’s internal production stack already runs two million simulation tests per day using this technology.
Robots Learning Physics in Their Imagination
Yashraj Narang closed with robotics. His team simulates 1,024 nuts and bolts on a single GPU in real time, with every physical contact modelled. They use this massive parallelism for reinforcement learning — training robot policies across hundreds of thousands of environments simultaneously.
The standout tool is NeRD (Neural Robot Dynamics) — a learned simulator. Instead of coding physics equations, you train a neural network on diverse robot interaction data and it learns to predict what happens next. The trick is representing physics in a robot-centric frame — the laws of physics don’t change based on where you’re standing, and encoding that invariance helps the network generalise.
Policies trained in NeRD transfer zero-shot to real robots. They demonstrated gear assembly, multi-part assembly, tactile sensing, and even assembling NVIDIA’s GB300 superchips with rigid bodies and cables. Next targets: industrial assembly, lab automation, and eventually home robotics.
The Q&A Threads
The panel discussion surfaced several forward-looking ideas worth tracking:
Continual learning. Choi envisions blurring the boundary between training and deployment. Her group’s TTT-Discover paper does lightweight RL on an already-trained model during inference, unlocking capabilities that were latent but unexpressed.
Multi-modal reasoning. Pavone argued that text-based reasoning traces are just the beginning. Humans reason visually and in more abstract representations. The next frontier is combining these modalities — particularly for counterfactual planning (“what if” scenarios).
One simulator for all robots. Fidler predicted convergence toward a single simulation engine for both self-driving cars and humanoids, since multiple robot types will eventually share the same physical world. Today, humanoid sim emphasises contact and interaction (the robot needs to touch things), while AV sim emphasises visual fidelity and scale (if the car touches something, that’s game over).
Scaling neural sim to high degrees of freedom. Narang flagged the core unsolved problem: random data generation doesn’t scale to 80-degree-of-freedom humanoid bodies. The RL community’s ideas about curiosity and intrinsic motivation may be the key to generating meaningful training data in that vast action space.
Key Takeaways
- RLP (Reinforcement Learning as Pre-training) injects exploration into the earliest stage of LLM training, rather than saving it for the RLHF phase at the end. Early results show broad improvements.
- Alpamayo-1 is a 10B-parameter open-source self-driving model that produces chain-of-thought reasoning traces alongside driving actions. Alpamayo-1.5 adds text-prompt navigation.
- Reasoning-action consistency is a specific post-training alignment step that couples what the model says it will do with what it actually does — solving the “says stop, runs the red light” problem.
- Three eras of AV simulation: hand-crafted graphics (months per scene) → neural reconstruction from recordings (fast but frozen) → generative world models (novel scenarios from data).
- Alpamayo Dreams is NVIDIA’s real-time generative driving simulator, a massive speed-up from last year’s COSMOS which took minutes per few seconds of video.
- NVIDIA runs two million simulation tests per day on their internal AV production stack using neural reconstruction.
- NeRD (Neural Robot Dynamics) replaces coded physics with a learned neural network that predicts the next state given robot state, torques, and contacts. Policies transfer zero-shot to real hardware.
- Robot-centric frame invariance — encoding that physics doesn’t change with position — is a key trick for making learned simulators generalise.
- 1,024 nut-and-bolt interactions simulated in real time on a single GPU, with full contact modelling, enabling massively parallel RL training.
- TTT-Discover performs lightweight RL on a pre-trained model during inference time, unlocking latent capabilities the base model couldn’t express.
- The unsolved scaling problem for neural sim: random action exploration breaks down at ~80 degrees of freedom (humanoid-scale), requiring smarter exploration strategies.
- Future convergence: separate simulators for cars and humanoids will eventually merge into one world engine, since robots will coexist in shared physical spaces.
- Everything presented is open-source — models, code, datasets, post-training scripts — available on Hugging Face and GitHub.
Claude’s Take
This is a well-produced GTC panel that does what NVIDIA does best: package genuinely interesting research into a product narrative. Karoly Zsolnai-Feher (Two Minute Papers) is an effective host — he keeps things moving, asks questions that reveal the right details, and his paper-guessing game at the end is a charming bit of academic fanservice.
The substance is real. RLP is a conceptually clean idea (let the model explore from the start, not just at the end), and the reasoning-action consistency work on Alpamayo addresses a problem that anyone who’s worked with multi-output models will recognise — the outputs drift apart unless you explicitly tie them together. The generative simulation trajectory from “artists build it” to “neural nets learn it” is compelling and well-illustrated.
That said, this is a GTC keynote panel, so the usual caveats apply. Specific numbers are scarce. “Super surprising and exciting” is not a benchmark. The open-source framing is genuine — the code and models are actually available — but the ecosystem still runs on NVIDIA hardware, which is the real business model. Nothing presented here is peer-reviewed in this format; it’s a curated highlight reel.
Score: 7/10. Solid breadth across four distinct research areas with a clear connective thread. The presentations are short enough that nothing gets deep, but long enough to convey the key ideas. Worth watching if you want a 40-minute survey of where NVIDIA’s physical AI research stands in early 2026. Not worth it if you want technical depth on any single topic — go read the papers instead.
Further Reading
- Alpamayo-1 / 1.5 — NVIDIA’s open-source reasoning model for autonomous driving (Hugging Face, GitHub)
- COSMOS — NVIDIA’s world foundation model for generative simulation
- NeRD (Neural Robot Dynamics) — learned physics simulator for robotics (featured on Two Minute Papers episode 1000)
- TTT-Discover — test-time training paper by Yejin Choi’s group on lightweight RL during inference
- 3D Gaussian Splatting — the reconstruction technique underlying much of the simulation work
- Wavelet Turbulence — the Oscar-winning fluid simulation paper Karoly showcased in the paper-guessing game