Inferensys

Glossary

RT-1/RT-2 Architecture

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.
ML engineer managing model versions on laptop, version history visible, technical Git-like workflow.
ROBOTICS TRANSFORMER

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.

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.

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.

RT-1/RT-2 ARCHITECTURE

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.

01

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.
02

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.
03

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.

04

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.
05

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.

06

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.

ROBOT TRANSFORMER

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.

ARCHITECTURE COMPARISON

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 / MetricRT-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).

RT-1/RT-2 ARCHITECTURE

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.

01

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.
02

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.
03

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:

  1. Navigate to and identify the refrigerator.
  2. Open the fridge door.
  3. Locate and grasp the Coke can.
  4. Close the fridge door.
  5. 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.
04

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.
05

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.
06

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.
RT-1 & RT-2

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.

Prasad Kumkar

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.