Adaptation: what robot foundation models actually learn?
Robot foundation models like NVIDIA's GR00T N1.7 look superficially like large language models: pretrain on broad data, specialize on narrow data. But the analogy breaks down in ways that matter for how we build, deploy, and maintain these systems. When we specialize an LLM, we are usually teaching it something it doesn't know. When we specialize a vision-language-action model for a new robot, we are usually teaching it nothing new at all. We are teaching it how to express what it already knows through a different body. This distinction is not pedantic. It changes the economics of industrial robotics, the architecture of deployment pipelines, and where competitive advantage will accrue.
Foundation models have arrived in robotics
Over the past three years, the machine learning community has internalized a particular pattern: pretrain a large model on internet-scale data, then adapt it cheaply for downstream applications. The pattern proved so productive for language that it was probably inevitable it would be exported to other domains. Robotics is the domain where the export is now happening in earnest, and where, we'd argue, the pattern needs the most careful reinterpretation.
NVIDIA's GR00T N1.7 is a useful concrete case. It is a 3-billion-parameter vision-language-action (VLA) model, released under a commercial license, that maps visual observations, natural language instructions, and robot proprioceptive state to continuous motor commands. Architecturally, it is a dual system. A vision-language model, a Cosmos-Reason2-2B backbone, handles high-level reasoning: parsing instructions, decomposing tasks, grounding language in what the cameras see. A separate diffusion transformer takes that high-level representation together with the robot's live state and denoises it into precise, real-time motor commands. NVIDIA describes these as System 2 and System 1, borrowing the deliberate-versus-reflexive framing from cognitive science, and the framing is apt: one component decides what to do, the other decides how the body should do it.
The inputs are considerably richer than anything an LLM consumes. A single inference step may condition on multiple RGB camera views, a language instruction, joint positions and velocities, end-effector pose, and gripper state. The outputs are not tokens but continuous action vectors whose dimensionality depends on the degrees of freedom of the particular robot. The model is, in effect, answering a question no text model has ever faced: given what I see, what I know about my body, and what I've been asked to accomplish, what sequence of physical motions should I execute over the next fraction of a second?
That question has two parts, and keeping them separate is the key to everything that follows. Understanding manipulation (how objects behave, how grasps succeed or fail, how tasks decompose into steps) is one kind of knowledge. Knowing how to move this particular body to act on that understanding is another. Pretraining supplies the first. Specialization mostly supplies the second.
What the pretraining actually teaches
A common misconception is that models like GR00T are trained primarily on robot demonstrations. The most interesting fact about GR00T N1.7's pretraining is how much of it isn't robot data at all.
The largest single ingredient is human data. N1.7 was pretrained on more than 20,000 hours of egocentric human video, NVIDIA's EgoScale corpus, spanning tasks from manufacturing and retail to healthcare and household work. This is first-person footage of humans assembling parts, opening cabinets, organizing shelves, manipulating tools, captured with ego cameras, wrist cameras, and hand tracking. None of it contains robot joint trajectories, because there is no robot in it. What it contains instead is something arguably more valuable and certainly more scalable: dense evidence about how manipulation works. Object affordances. Contact-rich interaction. Temporal structure. How multi-step tasks decompose. NVIDIA's underlying intuition is straightforward: humans and humanoid robots share the essentials of embodiment (two hands, a first-person viewpoint, a world full of graspable things), so sensorized human activity is a legitimate pretraining substrate for robot policies. Notably, NVIDIA reports a scaling relationship here: more human video data predictably improves downstream robot dexterity, without requiring that every behavior first be demonstrated on physical hardware through teleoperation. If that relationship holds up, it matters enormously, because human video is the one data source in robotics that scales the way text scaled for language models.
The second ingredient is robot demonstration data: corpora like Open X-Embodiment, DROID, and LIBERO, along with proprietary teleoperation across bimanual, semi-humanoid, and humanoid platforms. Each sample synchronizes camera images, joint states, end-effector poses, gripper state, executed actions, and a language instruction. This is where manipulation knowledge gets grounded into actual robot embodiments: where the model learns not just that a mug can be grasped by its handle, but what commanding a real arm through that grasp looks like as a trajectory.
The third ingredient is simulation. Physics simulators generate trajectories at a volume and diversity that physical data collection cannot approach: rare edge cases, safe failures, systematic domain randomization across lighting, textures, and object geometry. Simulation fills the gaps that would be prohibitively expensive, or unsafe, to fill with real hardware.
The composition of this mixture tells you what the resulting model is. It is not a library of robot-specific skills. It is a general model of manipulation, grounded across enough embodiments that "how bodies act on objects" has been learned as something closer to an abstraction than a lookup table. That is precisely why what happens after pretraining should not be described the way we describe LLM fine-tuning.
Where the LLM analogy breaks
Consider what happens when we fine-tune a language model on medical literature. The base model has broad general knowledge but shallow domain expertise; fine-tuning injects new semantic content. The model afterward knows things it did not know before: drug interactions, diagnostic criteria, clinical conventions. The input and output spaces are unchanged (text in, text out); what changed is the knowledge distribution.
Now consider adapting GR00T N1.7 to a new warehouse robot. The foundation model already understands grasping, object permanence, task sequencing, and visual grounding. That is exactly what tens of thousands of hours of pretraining bought. What it does not know is this robot: its kinematics, its joint limits, its gripper geometry, its controller's response characteristics, its camera placement, the peculiar lighting of this facility. Almost everything being learned during specialization concerns the interface between a stable body of physical knowledge and a novel embodiment and environment.
The two processes differ along nearly every axis that matters:
What changes. LLM fine-tuning primarily shifts semantic knowledge within a fixed input/output space. VLA adaptation primarily remaps input and output spaces (new sensor configurations, new action dimensionalities) around knowledge that stays largely fixed. GR00T's own machinery reflects this: the model indexes robots by embodiment tag, encodes each robot's proprioceptive state through embodiment-specific projections, and emits action vectors shaped to that robot's degrees of freedom. The scaffolding for "same knowledge, different body" is built into the architecture.
What failure looks like. A poorly fine-tuned LLM produces wrong or off-distribution text; the cost is usually mediated by a human reader. A poorly adapted VLA produces physical motion, and errors compound through a closed control loop before contacting the real world, sometimes literally. This asymmetry alone justifies treating VLA specialization as a systems and safety problem rather than a model-optimization problem.
How success is measured. Language model quality can be evaluated offline against held-out text. A robot policy's open-loop prediction error correlates only loosely with what actually matters: closed-loop task success on hardware, over long horizons, under distribution shift. Evaluation for VLAs is inseparable from simulation infrastructure and physical trials, which means the "fine-tuning loop" familiar from LLMs is really an engineering pipeline with a training step inside it.
What the data costs. Text for fine-tuning is abundant and cheap. Robot demonstrations require hardware, teleoperators, and time, which is why the entire economic logic of robot foundation models rests on making the specialization step as small as possible, and why the human-video scaling result is significant.
We should be honest about the counterargument. In NVIDIA's own tooling, adapting GR00T is called fine-tuning, and mechanically it often is: gradients flow, weights update, sometimes through much of the network. For a robot far from the pretraining distribution (an unusual morphology, a contact-rich task the model has never seen), substantial weight updates may be genuinely necessary, and the "knowledge transfer" framing gets blurrier. The distinction we're drawing is about the typical case and the correct mental model, not a claim that foundation weights are sacrosanct. But the typical industrial case really does look like adaptation: the manipulation knowledge transfers, and what's learned is the bridge.
Why this matters industrially: the arithmetic of variability
The stakes of this framing become concrete the moment you consider deployment at scale.
Picture an enterprise operating three fulfillment centers. Each has different camera models, different lighting, different shelving geometry, different robot arms from different vendors, different end effectors. Under an LLM-style mental model ("each deployment gets its own fine-tuned model"), this enterprise maintains three heavyweight training pipelines, three demonstration-collection efforts, and three divergent model lineages that drift apart with every update. Every hardware change anywhere restarts a substantial training effort. The maintenance burden grows multiplicatively with variability.
Under an adaptation mental model, the picture inverts. One foundation model, treated as a stable and infrequently-updated asset, sits at the center. Around it, lightweight adaptation layers absorb the variability: embodiment adapters that map the model's action representation onto each robot's kinematics and controller; perception adapters that normalize each facility's cameras and lighting; task adapters that specialize behavior for bin picking here and depalletizing there. When a gripper is swapped, you retrain a gripper-facing adapter. When a camera is repositioned, you touch the perception path. The foundation model, and everything it knows about physics and manipulation, stays put.
Readers familiar with parameter-efficient methods in NLP will recognize the shape of this: it resembles the adapter and LoRA ecosystem far more than it resembles classic full-model fine-tuning. But in robotics the modularity is not merely a compute optimization. It is what makes the maintenance economics tractable at all, because industrial environments change constantly (robots are upgraded, fixtures are moved, product lines turn over quarterly), and a model that must relearn manipulation every time a workcell changes is a model that will never be economically deployed.
The pattern generalizes across sectors. In automotive assembly, adapting to torque tools and precision insertion should not require touching the model's general understanding of contact and alignment. In manufacturing, where production lines reconfigure every few months, incremental demonstrations should update fixtures and end-effector adapters, not restart pretraining-scale efforts. In retail fulfillment, introducing a new picking arm changes exactly one thing, the embodiment, and the specialization cost should be proportional to that one change. NVIDIA's release of GR00T-H, a surgical variant post-trained from the same N1.7 foundation on operating-room data, is an early demonstration of the same logic at the level of an entire vertical: the physical intelligence is shared; the domain grounding is layered on top.
Vocabulary shapes architecture
It is tempting to dismiss all this as a terminology dispute. We don't think it is, because the words practitioners use shape the systems they build.
Teams that think in terms of fine-tuning tend to build monolithic pipelines: collect data, update the model, redeploy, repeat. Teams that think in terms of adaptation tend to build modular ones: a frozen or slowly-evolving foundation, a schema for normalizing data across robots and facilities, a library of adapters with independent lifecycles, and an evaluation gate, usually simulation-first, between any adapter change and the factory floor. The second architecture is more robust to exactly the kind of change industrial environments generate, and it is much easier to reason about when something goes wrong, because faults localize to the layer that changed.
Our expectation is that the field's vocabulary will catch up with this reality, much as NLP's vocabulary evolved from "fine-tuning" toward the finer-grained language of parameter-efficient adaptation, instruction tuning, and post-training. There remain genuine open questions here: when adapter-only specialization is insufficient, how to prevent adapters from silently eroding the foundation's generality, how to certify safety when the deployed policy is a composition of independently-updated modules. We don't want to understate them. But the direction seems clear. The models are learning physics once. Everything after that is a question of how efficiently we can teach an existing intelligence to inhabit a new body, in a new place, doing a new job.
That is adaptation. Calling it fine-tuning undersells what the foundation model already knows, and misleads us about where the real engineering work now lies.
Back to Research