The RT-1 (Robotics Transformer 1) architecture is a transformer-based model trained end-to-end on a large, diverse dataset of real-world robot demonstrations. It tokenizes images and text instructions into a single sequence, using a FiLM (Feature-wise Linear Modulation)-conditioned EfficientNet for visual feature extraction and a token learner to compress patches. The transformer decoder then autoregressively predicts a sequence of discrete action tokens, which are de-tokenized into continuous robot commands (e.g., arm pose, gripper open/close). This design enables a single model to perform hundreds of distinct tasks across different environments and objects by learning from large-scale demonstration data.
Glossary
RT-1/RT-2 Architecture

What is RT-1/RT-2 Architecture?
RT-1 and RT-2 are transformer-based neural network architectures from Google DeepMind designed to enable generalist, multi-task robotic control by directly mapping visual observations and natural language instructions to low-level robot actions.
RT-2 (Robotics Transformer 2) is a Vision-Language-Action (VLA) model that represents a significant evolution by co-training on both internet-scale vision-language data and robotic trajectory data. It leverages a pre-trained PaLM-E-style architecture, where images are processed by a Vision Transformer (ViT) and language/action tokens are processed by a large language model, all within a single token stream. This co-fine-tuning allows RT-2 to perform chain-of-thought reasoning in a latent space of web knowledge, enabling emergent capabilities like symbolic reasoning and novel object manipulation. It translates high-level instructions into actions by treating them as a next-token prediction problem within its learned semantic and physical understanding of the world.
Core Architectural Features
RT-1 and RT-2 are transformer-based robot learning architectures from Google that tokenize images, instructions, and actions to train a single model for large-scale, multi-task robotic control.
Unified Tokenization
The core architectural innovation is the tokenization of all input and output modalities into a single, unified sequence. This includes:
- Visual tokens: Raw camera images are processed by a pre-trained Vision Transformer (ViT) to produce a sequence of patch tokens.
- Language tokens: Natural language instructions are tokenized using a standard text tokenizer.
- Action tokens: Robot actions (e.g., end-effector poses, gripper commands) are discretized and represented as a sequence of discrete tokens. This unified representation allows a standard transformer decoder to process the multimodal context and autoregressively predict the next action token, treating robot control as a sequence modeling problem.
Transformer Decoder Backbone
Both architectures employ a causal transformer decoder as the central neural network backbone. This model:
- Takes the concatenated sequence of image tokens and language tokens as the conditioning context.
- Autoregressively predicts the sequence of action tokens, one token at a time.
- Leverages the self-attention mechanism to build rich representations that fuse visual and linguistic information. This design enables the model to learn from large, diverse datasets of robot experiences, generalizing across tasks, environments, and object instances seen during training.
RT-2: Co-Fine-Tuning with Web-Scale VLMs
RT-2 introduced a significant advancement by co-fine-tuning a pre-trained Vision-Language Model (VLM). Instead of training from scratch, RT-2 initializes its weights from a massive VLM like PaLM-E or PaLI-X, which has been pre-trained on vast datasets of web images and text. This process, known as vision-language-action (VLA) transfer, imbues the model with semantic knowledge and visual reasoning capabilities from the internet. The model is then fine-tuned on robot data, allowing it to interpret commands like 'pick up the extinct animal' and correctly identify a dinosaur toy, demonstrating emergent semantic reasoning.
Action Tokenization & Discretization
To integrate continuous robot actions into the token-based sequence model, a discretization strategy is critical.
- RT-1 used binning, where each dimension of the action vector (e.g., x, y, z, rotation) is quantized into a fixed number of bins, each assigned a token ID.
- RT-2 can use more sophisticated methods like VQ-VAE (Vector Quantized Variational Autoencoder) to learn a discrete codebook for compressing continuous action trajectories. This creates a vocabulary of action tokens. During inference, the model's predicted token IDs are mapped back to continuous values via the codebook or bin centers to command the robot.
Large-Scale, Heterogeneous Training Data
The architecture's generalist capability is enabled by training on massive, heterogeneous datasets of robot demonstrations. For RT-1, this was the 130k-episode Google Robots dataset collected from 13 different robot embodiments across 700+ tasks. The training objective is simple behavior cloning (supervised learning) on this data. The transformer learns to associate the diverse visual scenes and language instructions with the corresponding action sequences, absorbing patterns of effective manipulation and navigation. This scale is essential for the model to exhibit robust multi-task performance and positive transfer between skills.
In-Context Learning & Chain-of-Thought
A key capability unlocked by the VLM backbone in RT-2 is in-context reasoning. The model can perform internal chain-of-thought before outputting actions. For example, when asked to 'move the coke can to the top of the stack,' the model can reason internally about object relationships and stability. This is facilitated by the pre-training on web data, which includes logical and sequential reasoning tasks. The architecture does not explicitly output text reasoning steps, but the internal representations within the transformer layers enable this multi-step semantic planning, bridging high-level intent to low-level control.
How the RT Architecture Works: A Technical Breakdown
A technical overview of the RT-1 and RT-2 architectures, which are transformer-based models for large-scale, multi-task robotic control.
The RT (Robotics Transformer) architecture is a family of transformer-based neural networks designed for end-to-end visuomotor control, directly mapping raw visual observations and natural language instructions to low-level robot actions. RT-1 tokenizes images, instructions, and proprioceptive data into a single sequence, which is processed by a FiLM-conditioned transformer to autoregressively predict discrete action tokens. This design enables training on large, heterogeneous datasets of robot demonstrations, allowing a single model to generalize across tasks, objects, and environments.
RT-2 advances this paradigm as a Vision-Language-Action (VLA) model by co-fine-tuning a large pre-trained vision-language model, like PaLM-E, on robotic data. It repurposes the model's next-token prediction objective for action generation, demonstrating emergent capabilities like semantic reasoning and chain-of-thought planning. The architecture's core innovation is treating robot actions as just another modality within a unified token stream, leveraging the knowledge and representational power of web-scale vision-language pre-training for embodied intelligence.
RT-1 vs. RT-2: Key Differences and Evolution
A technical comparison of Google's RT-1 and RT-2 embodied AI models, highlighting architectural innovations and performance improvements.
| Feature / Metric | RT-1 (Robotics Transformer 1) | RT-2 (Robotics Transformer 2) |
|---|---|---|
Core Architectural Paradigm | Tokenizes images and proprioceptive state; outputs actions via FiLM conditioning. | Tokenizes images, text, and web-scale data; outputs actions via a single, unified token stream. |
Primary Training Data Source | Large-scale, real-world robotic interaction data (e.g., 130k+ episodes). | Robotic interaction data + massive web-scale vision-language datasets (e.g., from PaLI, PaLM-E). |
Knowledge Transfer Mechanism | Limited to knowledge within the robotic dataset. | Leverages internet-scale knowledge (e.g., object recognition, reasoning) via pre-trained VLM backbone. |
Tokenization of Actions | Actions are tokenized as continuous vectors (e.g., 7-DoF arm poses, gripper commands). | Actions are discretized into a vocabulary of tokens, similar to language, enabling co-training with text. |
Emergent Capabilities | Robust multi-task performance on seen tasks and environments. | Demonstrated semantic reasoning, symbol understanding, and novel task execution (e.g., 'pick up the extinct animal'). |
Sim-to-Real Transfer Performance | Requires significant real-world data; limited generalization from sim-only training. | Improved zero-shot sim-to-real transfer due to stronger visual and semantic priors from web data. |
Model Size & Scale | ~35 million parameters (efficient for real-time control). | Significantly larger (billions of parameters), inheriting scale from the pre-trained VLM (e.g., PaLM). |
Training Compute & Efficiency | Trained primarily on robot data; compute scales with dataset size. | Leverages massive pre-training; fine-tuning on robot data is more parameter-efficient (PEFT possible). |
Demonstrated Capabilities and Use Cases
The RT-1 and RT-2 architectures are not just research models; they have been rigorously tested and deployed to perform a wide range of real-world robotic tasks. This section details their proven abilities, from generalist manipulation to long-horizon reasoning.
Generalist Multi-Task Manipulation
The core capability of RT-1 is large-scale multi-task learning. Trained on a dataset of 130k real-world robotic trials, a single RT-1 model can execute over 700 distinct tasks. This includes:
- Object pick-and-place across diverse geometries.
- Opening drawers and doors with varied mechanisms.
- Placing objects into specific receptacles (e.g., a cup in a rack).
- Wiping surfaces and pressing buttons. The model's token-based action representation allows it to condition its output on a natural language instruction and the current image, switching seamlessly between tasks without task-specific modules.
Semantic and Symbolic Reasoning (RT-2)
RT-2's key advancement is leveraging knowledge from web-scale vision-language data for symbolic understanding and reasoning. This enables capabilities unseen in RT-1:
- Interpreting abstract concepts: It can execute 'place the bag in the correct recycling bin' by identifying the 'recycling' symbol.
- Mathematical reasoning in context: It can perform 'pick up the object with the number 3 on it' from a cluttered scene.
- Metaphorical understanding: Commands like 'move the apple to the winner' (where 'winner' is a trophy) are parsed by grounding language in visual semantics learned from the internet, not just robotic data.
Long-Horizon, Multi-Stage Instruction Following
Both architectures demonstrate the ability to decompose and execute chained instructions. For example, given 'bring me a Coke from the fridge,' the model must:
- Navigate to and identify the refrigerator.
- Open the fridge door.
- Locate and grasp the Coke can.
- Close the fridge door.
- Bring the can to the human. This is achieved through the model's temporal context window, which processes a short history of images and actions, allowing it to maintain the state of a multi-step plan without an explicit symbolic planner.
Robustness to Environmental Distraction
A critical real-world test is performance amidst visual clutter and object appearance variation. RT models are evaluated on their ability to ignore irrelevant objects and execute tasks under conditions like:
- Novel backgrounds and lighting not seen in training.
- Distractor objects placed near the target.
- Partial occlusions of the target object. The FiLM conditioning mechanism in RT-1 and the co-attention in RT-2's vision-language backbone allow the model to focus its visual processing on instruction-relevant elements, demonstrating significant robustness compared to prior methods.
One-Shot or Few-Shot Adaptation to New Objects
While trained on a fixed set of objects, the architectures show emergent adaptation capabilities. By providing a single demonstration (via an image sequence of the new task) or a few language-described examples at inference time, the model can often generalize to:
- Manipulating novel object categories with similar affordances.
- Performing new combinations of known skills (e.g., 'sweep the spilled beans into the dustpan'). This is a direct benefit of the sequence-to-sequence formulation and the rich semantic features from pre-trained components, treating new scenarios as a form of in-context learning.
Sim-to-Real and Cross-Embodiment Potential
The token-based design facilitates transfer across domains. Demonstrated and ongoing research includes:
- Sim-to-Real Transfer: Policies trained in photorealistic simulators (using simulated images tokenized the same way) can transfer to physical robots with minimal fine-tuning, as the input representation is consistent.
- Cross-Embodiment Learning: By normalizing actions to a shared token space, there is potential to train on data from multiple robot platforms (e.g., different arm types) to create a more universal policy, a direction explored in successors like RT-X.
Frequently Asked Questions
RT-1 and RT-2 are landmark transformer-based architectures from Google that enable generalist robot control by learning from large-scale, multi-task datasets. These FAQs address their core mechanisms, differences, and practical implications for robotics engineering.
RT-1 (Robotics Transformer 1) is a transformer-based neural network architecture that tokenizes robot camera images, natural language instructions, and previous motor commands into a single sequence to predict the next action. It works by processing a history of observations and commands through a FiLM-conditioned EfficientNet for visual feature extraction, concatenating these with tokenized language and proprioception, and passing the unified token stream through a Transformer decoder to autoregressively output a sequence of discretized action tokens. These tokens are decoded into continuous robot commands (e.g., end-effector pose, gripper open/close). RT-1 was trained on a large, diverse dataset of real-world robot demonstrations (the Google Robot dataset) to perform hundreds of tasks, demonstrating that a single model could generalize across objects, environments, and instructions.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
RT-1 and RT-2 are part of a broader ecosystem of architectures and techniques for training generalist robots. These related concepts define the technical landscape of embodied AI.
Vision-Language-Action (VLA) Model
A Vision-Language-Action (VLA) model is a multimodal AI architecture that directly processes visual inputs and natural language instructions to generate low-level physical actions or control commands for a robot. It represents the core architectural paradigm of RT-1 and RT-2, where a single transformer model unifies perception, language understanding, and action generation into one end-to-end system. This contrasts with modular pipelines that separate these components.
- Key Feature: Unifies three modalities (vision, language, action) in a single token stream.
- Example: RT-2 directly outputs robot arm joint angles or end-effector velocities based on a camera image and the command "pick up the blue block."
Embodied Foundation Model
An embodied foundation model is a large-scale, pre-trained neural network designed to serve as a general-purpose backbone for a wide range of robotic tasks by integrating perception, reasoning, and action generation. RT-2 is a prime example, built by fine-tuning a massive vision-language model (PaLI-X) on robot data. This approach leverages internet-scale pre-training for visual and linguistic concepts, then grounds this knowledge in physical action.
- Core Idea: Transfer knowledge from web-scale vision-language pre-training to the robotics domain.
- Benefit: Exhibits emergent capabilities like reasoning about object categories not seen in robot training data.
Multimodal Instruction Tuning
Multimodal instruction tuning is the fine-tuning process where a pre-trained vision-language model is trained on datasets of (image, instruction, action) triplets to align its outputs with executable robot behaviors. This is the critical adaptation step used to create RT-2 from PaLI-X. The model learns to interpret instructions in the context of the current visual scene and output a sequence of action tokens.
- Process: Takes a frozen VLM backbone and trains it on robot trajectories.
- Output Space: Actions are discretized into a vocabulary of tokens (e.g., "binarized" continuous values), allowing the language model's text decoder to generate them.
End-to-End Visuomotor Control
End-to-end visuomotor control is an approach where a single neural network model learns to directly map raw visual observations (pixels) to low-level robot motor commands, without explicit intermediate representations like state estimation or planning. RT-1 and RT-2 exemplify this paradigm. The model implicitly learns necessary representations (like object pose or affordances) within its layers, optimizing the entire pipeline for the final control objective.
- Advantage: Reduces engineering complexity of hand-designed state estimators.
- Challenge: Requires large, diverse datasets to learn robust representations from pixels alone.
PaLM-E Architecture
PaLM-E is an embodied multimodal model from Google that integrates a large language model (PaLM) with a vision transformer, using a single token stream to process language, visual inputs, and sensor data for planning and control tasks. It is a direct architectural predecessor to RT-2. PaLM-E demonstrated that injecting continuous sensor observations (like images) into the token stream of a large language model could enable embodied reasoning and planning, paving the way for RT-2's more direct action generation.
- Key Differentiator: Focused more on high-level planning and reasoning ("what to do") whereas RT-2 focuses on low-level control ("how to do it").
- Input: Language commands and multi-image sequences.
SayCan Paradigm
The SayCan paradigm is a robotics framework from Google that combines a large language model's high-level task planning capability ('Say') with a learned affordance model's understanding of feasible low-level skills ('Can') to execute instructions in the real world. It represents a complementary, hierarchical approach to RT-1/RT-2's end-to-end method. SayCan uses LLMs for decomposition and skill selection, while RT-2 generates actions directly.
- Architecture: Modular. LLM proposes skills, value function checks feasibility.
- Comparison to RT-2: SayCan is more interpretable and modular; RT-2 is more general and requires less predefined skill engineering.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us