---
title: 'NVIDIA''s New AI Shouldn''t Work... But It Does'
source: 'https://youtube.com/watch?v=mFSFvKquXwI'
video_id: 'mFSFvKquXwI'
date: 2026-07-24
duration_sec: 548
channel: 'Two Minute Papers'
---

# NVIDIA's New AI Shouldn't Work... But It Does

> Source: [NVIDIA's New AI Shouldn't Work... But It Does](https://youtube.com/watch?v=mFSFvKquXwI)

## Summary

This video presents DreamDojo, a new AI system from NVIDIA that learns to understand and predict physical interactions in the real world by watching 44,000 hours of human video. The system overcomes the simulation-to-reality gap by using four key innovations: self-supervised action labeling, information compression, relative action representation, and next-frame prediction with cheating prevention. The result is a model that can predict realistic physical interactions, such as crumpling paper or moving a lid, far better than previous methods.

### Key Points

- **The Simulation-to-Reality Problem** [00:47] — Robots trained in simulation often fail in the real world because simulations are not good enough mimics of reality.
- **Using Human Videos for Robot Learning** [01:53] — Feeding AI 44,000 hours of human videos is useless because humans and robots have different bodies, and videos lack action labels.
- **Idea 1: Self-Supervised Action Understanding** [02:23] — Let the AI infer actions from video without labels, similar to how humans understand someone waving at a bus.
- **Idea 2: Information Compression** [02:53] — The dataset has over 4 billion frames; the AI is forced to compress information to learn only the most critical features, like a musician learning notes.
- **Idea 3: Relative Actions Instead of Absolute** [03:34] — Instead of global coordinates, the AI uses relative actions (e.g., knife relative to carrot) to generalize to different positions.
- **Idea 4: Next-Frame Prediction with Cheating Prevention** [04:27] — The AI learns cause and effect by predicting the next frame, but is prevented from cheating by feeding actions in small blocks of 4.
- **Results: Dramatic Improvement** [05:09] — The new method correctly predicts paper crumpling, lid movement, and avoids clipping, outperforming previous methods significantly.
- **Speed via Distillation** [06:12] — A student model distilled from the teacher runs 4 times faster (10 fps), making interactive prediction possible.
- **Comparison with NeRD** [07:19] — Unlike NeRD (3D environment), this system works in 2D pixels, enabling learning about thousands of everyday objects.

### Conclusion

DreamDojo represents a huge leap forward in robot learning from video, enabling realistic physical understanding and prediction. With free code and models, it brings us closer to robots that can fold laundry, cook, or assist in surgery.

## Transcript

Dear Fellow Scholars, this is Two Minute&nbsp; Papers with Dr. Károly Zsolnai-Fehér. We’ve been trying out doing the videos with a&nbsp; camera. I really enjoyed it, and your feedback&nbsp;&nbsp; was also absolutely incredible. I’ve never&nbsp; seen anything like this. So many comments,&nbsp;&nbsp;
thank you so much for the kind words everyone.&nbsp; So, we will try to do more of this. But note&nbsp;&nbsp; that this one is a classic voice paper that&nbsp; we’ve always done here. It was done before&nbsp;&nbsp; we did the camera thing, I thought I would&nbsp; record this little intro now so you don’t&nbsp;&nbsp;
get surprised. And then next video I’ll be back.&nbsp; And for now, please enjoy this super fun paper. How do robots learn how to be a good robot?&nbsp; Well, surely not like this. Haha. Not by just&nbsp;&nbsp;
running around in the real world. Of course!&nbsp; I mean, imagine a real robot doing this for&nbsp;&nbsp; years and years. It would be dangerous to others&nbsp; and itself. So here is a better question: how&nbsp;&nbsp;
do we teach a robot to be a helpful, good robot&nbsp; safely? Well, we put it inside of a video game. we simulate physics, and let it fail.&nbsp; A lot. Then, over time, get better.
Now, I’ve been to a bunch of AI&nbsp; and robotics labs around the world,&nbsp;&nbsp; things work fantastically well in a simulation,&nbsp; and then, when you put them into the real world,&nbsp;&nbsp;
huge disappointment. Something that worked really&nbsp; well suddenly does not work well or at all. Why? Well, the main reason is that&nbsp; simulations are often just not good&nbsp;&nbsp;
enough. They often mimic reality, but&nbsp; they are not a substitute for reality. So what do we do? Well, of course, try&nbsp; to use reality. In this work, DreamDojo,&nbsp;&nbsp;
scientists said okay, let’s feed the AI 44&nbsp; thousand hours of videos of humans doing stuff. That sounds great, except the fact&nbsp; that it is completely useless.&nbsp;
Why? Well, humans and robots have&nbsp; entirely different physical bodies,&nbsp;&nbsp; hands, and joints. Also, the video does not&nbsp; contain action information. It’s just a soup&nbsp;&nbsp; of data that doesn’t say what joints&nbsp; are exerting forces and how. Nothing.
Well, they propose 4 genius ideas,&nbsp; and I hope that will make this work,&nbsp;&nbsp; One, if the video does not have labels&nbsp; on what actions are taking place, well,&nbsp;&nbsp;
then let the AI try to understand it&nbsp; and make up its own story of what is&nbsp;&nbsp; happening. If you see someone waving&nbsp; at a bus that is pulling away. You&nbsp;&nbsp; don’t need a text label to know that&nbsp; someone has just missed their ride.
Two, this dataset is stupendously large. It&nbsp; has more than 4 billion frames, and probably&nbsp;&nbsp; more than 1 quadrillion pixels. Okay, that is&nbsp; too much information. It is almost impossible&nbsp;&nbsp;
to handle. So the AI has to learn what is&nbsp; important and what isn’t. How? Well, it is&nbsp;&nbsp; forced to compress information. A musician does&nbsp; not need to know every song in the universe. They&nbsp;&nbsp;
have to know that there are 12 notes in a scale,&nbsp; and every song is just built as a combination&nbsp;&nbsp; of these fundamental notes. This forces the AI&nbsp; to look at only the most critical information.
But guess what, it is still not enough to just&nbsp; dump videos into the robot and make it work. Why? Well, three, if you train a robot to pick&nbsp; up a cup at a global position, it learns to&nbsp;&nbsp;
reach for that exact spot in the world. That’s&nbsp; no good. Why? Well, if you move the cup a few&nbsp;&nbsp; inches to the left, the global coordinates change&nbsp; entirely, and the robot has no idea what to do.
So, what scientists said, instead&nbsp; of using absolute robot joint poses,&nbsp;&nbsp; let’s transform the inputs into relative actions.&nbsp; If you are cooking, sometimes you don’t need&nbsp;&nbsp;
absolute coordinates. Here, the knife only needs&nbsp; to know where it is relative to the carrot’s spot. And believe it or not, this is still not&nbsp; working. We need something more. What do we need?
Well, four, the goal is that the AI learns&nbsp; cause and effect. Jelly bunny hits the wall,&nbsp;&nbsp; and something happens. Try to learn&nbsp; that by predicting the next frame.&nbsp;&nbsp;
The problem is that the AI is cheating. Like&nbsp; a student, it just looks at the solution at&nbsp;&nbsp; the end, and says, oh yeah, I was gonna say&nbsp; exactly that. So how did they prevent that?
Well, they fed it actions in&nbsp; small blocks of 4 at a time,&nbsp;&nbsp; so it cannot cheat by peeking at the&nbsp; future to guess what happens right now. Okay, this was a lot of genius stuff,&nbsp; so it better give us something amazing.
Let’s see what we got. Previous method.&nbsp; Can’t predict the future…oh my, look,&nbsp;&nbsp; that hand clips through the piece of paper.&nbsp; Now hold on to your papers Fellow Scholars for&nbsp;&nbsp;
the new method and….oh my! Look at that!&nbsp; The paper finally crumples beautifully! And with previous methods, the clipping gets&nbsp; even worse. Look. That’s not predicting reality,&nbsp;&nbsp;
that’s just guessing. New technique&nbsp; - now we’re talking! Looking good! and the lid refuses to move. No good. New&nbsp; technique, the lid moves! Woo-hoo! Yes,&nbsp;&nbsp;
this is the corner of the internet where we&nbsp; get unreasonably happy about a moving lid. the new technique is so much better than&nbsp; previous methods. This is a huge leap forward!
Now, this gets even better. So it finally&nbsp; understands the world better than previous&nbsp;&nbsp; techniques. So what do we pay for this? How&nbsp; much slower is this than previous methods? Well, it is pretty slow because it requires 35&nbsp;&nbsp;
heavy denoising steps just to generate&nbsp; one prediction. But wait, don’t despair! We can use distillation here. Distillation is&nbsp; a training phase where a fast student model&nbsp;&nbsp;
is used to learn the predictions of the&nbsp; slower, high-quality teacher model. The&nbsp;&nbsp; goal is that the student would be nearly as&nbsp; good as the teacher model, but much faster.
Well, let’s test that! Oh my, now the&nbsp; student is a heck of a lot faster.&nbsp;&nbsp; It seems that it is 4 times faster than the&nbsp; teacher that was used to train it. It runs at&nbsp;&nbsp;
about 10 frames per second. Understanding the&nbsp; world and predicting how it will change at a&nbsp;&nbsp; speed that is interactive. That is absolutely&nbsp; insane. Well done! And the kicker is that&nbsp;&nbsp;
they also predict very similar outcomes.&nbsp; This is an absolute slam dunk paper. Wow. Now for you wise Fellow Scholars out there, I’ll&nbsp; note that we talked about a technique called NeRD,&nbsp;&nbsp;
Neural Robot Dynamics. That was a robot&nbsp; AI that trained in its own imagination.&nbsp;&nbsp; So how does this relate to that? Now NeRD&nbsp; was building a perfect 3D environment. This&nbsp;&nbsp;
one thinks in 2D. It just sees the world as a&nbsp; bunch of 2D video pixels on a flat TV screen.&nbsp;&nbsp; Thus, this one is able to learn about&nbsp; thousands of everyday objects. So cool!
and robots that we can all own ourselves.&nbsp; In a world full of subscriptions,&nbsp;&nbsp; it is so refreshing that we get all of this&nbsp; for free. A ton of code and pre-trained&nbsp;&nbsp;
models are available for free for all of us.&nbsp; No silly subscriptions and proprietary code. A free brain that you can upload to your own&nbsp; devices and use it however you want. Love it.
So this finally puts us one step closer&nbsp; to having a robot fold our laundry,&nbsp;&nbsp; or cook a healthy meal. Or help a&nbsp; specialist doctor perform surgery&nbsp;&nbsp; from the other side of the planet via&nbsp; teleoperation. What a time to be alive!
