For the better part of a decade, teaching a simulated body to move has been a bespoke craft. Every skill - a walk, a vault, a recovery from a shove - was its own engineering project, coaxed out of a physics engine one reward function at a time. NVIDIA researchers now argue that motion can be learned the way language models learn text: chop it into tokens, pile up hundreds of hours of it, and let a transformer predict what comes next. The result is a system they call Generative Pretrained Controllers, or GPC, and it borrows the GPT playbook almost move for move.

Presented in a paper accepted to SIGGRAPH 2026 and authored by NVIDIA and Simon Fraser University researchers Yi Shi, Yifeng Jiang, Chen Tessler, and Xue Bin Peng, GPC reports a 99.98% success rate at reproducing a corpus of motion clips spanning more than 600 hours of movement data. More striking than the raw accuracy are the behaviors the team says nobody programmed: characters that catch their balance when shoved and pick themselves up after falling, none of it explicitly trained.

Tokenizing the Body

The core idea is to treat a motor skill the way a language model treats a word. GPC first learns a "motion vocabulary" - a discrete set of codes that stand in for chunks of movement - using a technique called Finite Scalar Quantization, or FSQ. Where earlier discrete-motion methods leaned on VQ-VAE-style codebooks that demand auxiliary losses and fiddly tricks like reinitializing "dead" codes, FSQ needs no explicit codebook at all. Each dimension of a latent vector is simply snapped to a fixed number of scalar levels, defining an implicit vocabulary that, the paper notes, is far simpler to train.

That vocabulary is optimized end-to-end with reinforcement learning against a plain motion-tracking objective - reproduce the reference clip. From that single goal, the researchers report, the model absorbs a startling range of skills, including highly dynamic ones like cartwheels, flips, and vaulting.

With the vocabulary in hand, stage two is pure GPT. A transformer decoder with causal self-attention learns the distribution over those skill tokens, generating each new token from the character's current state and every token that came before. At inference time it samples the next move using nucleus (top-p) sampling, the same trick that keeps language-model prose from wandering into gibberish. "Crucially," the authors write, "the resulting learned policy is robust and capable of learning recovery skills without explicit training procedures."

Adapting Without Forgetting

A pretrained controller is only useful if you can point it at new jobs. GPC's third stage introduces CoLA, a parameter-efficient fine-tuning method inspired by low-rank adaptation techniques that, according to the paper, adds less than 1% new parameters. That lets the base controller be steered toward downstream tasks - following a trajectory, crossing gapped terrain, navigating a scene - while the diversity and naturalness of the pretrained repertoire stay intact. Users can even nudge it toward specific stylized skills through a supervised warm-up before reinforcement learning takes over.

The design echoes the now-familiar large-model recipe: pretrain once at scale, adapt cheaply many times. Prior physics-based control work such as MoConVQ explored discrete motion representations, but GPC's contribution is scaling that idea to a 600-hour dataset and wrapping it in the pretrain-then-adapt structure that made language models general-purpose.

Why It Matters

NVIDIA has spent the past two years selling "physical AI" as the next platform shift, a story with three legs: simulation (Omniverse and Isaac Sim), foundation models (the GR00T line for humanoids), and onboard compute (Jetson Thor). GPC slots neatly into the middle leg. If motor skills can be pretrained and transferred the way text understanding is, robot makers could stop hand-building every gait and grasp and instead fine-tune a shared controller for their hardware - the same economics that let a thousand startups build on a handful of language models.

The emergent recovery behavior is the part worth dwelling on. A robot that improvises its way back to standing after an unplanned shove, without a dedicated "get up" policy, hints at the kind of robustness that has kept humanoids tethered to the lab. Movement that generalizes to situations it was never shown is precisely what a warehouse floor or a home demands.

What to Watch

The heavy caveat is that GPC's headline results live in physics simulation and character animation, not on a real robot dropped on a real floor. The paper's own showcase is a SIGGRAPH graphics demo, and the leap from simulated character to hardware - the notorious sim-to-real gap - has humbled many promising controllers. NVIDIA has open-sourced the work through its ProtoMotions codebase, so independent groups will soon test how far the tokenized-skill approach travels.

Three questions will decide GPC's reach. Does the pretrain-and-adapt structure hold up when the target is a specific humanoid with its own joints and quirks, rather than a general simulated body? How does 600 hours of motion compare to the tens of thousands of hours of egocentric video now feeding models like GR00T N1.7 - and can the two approaches be fused? And does emergent recovery survive contact with real actuators, sensor noise, and gravity that does not pause for a reset? If the answers trend positive, teaching robots to move may start to look a lot less like engineering and a lot more like prompting.

---

Sources

- GPC: Large-Scale Generative Pretraining for Transferable Motor Control (arXiv:2606.29148)
- GPC Project Page - Shi, Jiang, Tessler, Peng (SIGGRAPH 2026)
- NVIDIA AI on X
- NVIDIA Newsroom: Physical AI Models and Next-Generation Robots

"The resulting learned policy is robust and capable of learning recovery skills without explicit training procedures."
— Shi, Jiang, Tessler, and Peng, GPC authors, NVIDIA and Simon Fraser University
600+ hrs
Motion data
99.98%
Reproduction success
<1%
Added fine-tune params
3
Training stages