RT-1: Robotics Transformer for Real-World Control at Scale

RT-1: Robotics Transformer for Real-World Control at Scale

Anthony Brohan, Yevgen Chebotar, Chelsea Finn, Karol Hausman, Alexander Herzog, Julian Ibarz, Brian Ichter, Alex Irpan, Tomas Jackson, Sally Jesmonth, Nikhil Joshi, Ryan Julian, Dmitry Kalashnikov, Yuheng Kuang, Isabel Leal, Kuang-Huei Lee, Sergey Levine, Yao Lu, Utsav Malla, Devesh K. Misra, Igor Mordatch, Ofir Nachum, Carolina Parada, Jodilyn Peralta, Emily Perez, Karl Pertsch, Jornell Quiambao, Kanishka Rao, Michael Ryoo, Grecia Salazar, Pannag Sanketi, Kevin Sayed, Jaspiar Singh, Sumedh Sontakke, Austin Stone, Clayton Tan, Huong Tran, Vincent Vanhoucke, Steve Vega, Quan Vuong, Fei Xia, Ted Xiao, Peng Xu, Sichun Xu, Tianhe Yu, Brianna Zitkovich · Google DeepMind, Google Research · 2023

Framework

JAX + TensorFlow

License

Apache-2.0

Stars

1,723

Summary

RT-1 is a 35M-parameter transformer trained on 130K robot demonstrations that generalizes to new tasks, objects, and environments, forming the foundation for Google's RT-2 and RT-X line of VLA models.

Abstract Summary

RT-1 (Robotics Transformer 1) is the seminal work that proved transformer models can control real robots at scale. Trained on 130K real-world robot demonstrations across 744 tasks (pick, place, open, close, insert, etc.) collected over 17 months in Google office kitchens, RT-1 is a 35M-parameter model that takes RGB images and natural language instructions as input and outputs discrete robot actions at 3 Hz. The architecture is simple but effective: FiLM-conditioned EfficientNet-B3 for visual encoding, tokenized actions, and a Transformer decoder. The key insight is generalization at scale: RT-1 can execute commands it was never explicitly trained on ("pick up the extinct animal" when shown a dinosaur toy) by leveraging the cross-task structure in the large training corpus. The model is remarkably robust to distractors, lighting changes, and background clutter—much more so than smaller IL models trained on single-task datasets. The authors also show that RT-1 can be distilled into smaller models (RT-1 Small, 6M parameters) that run at 10 Hz on edge hardware without major accuracy loss. RT-1's training pipeline is fully open-sourced: the dataset format (RLDS), the model architecture (TensorFlow + JAX), and the inference runtime (ROS2 integration). The codebase includes data loaders for BridgeData V2 and ALOHA, plus evaluation scripts for the SimplerEnv benchmark. While newer models (RT-2, Octo, OpenVLA) have surpassed RT-1 on absolute accuracy, it remains the gold standard for understanding how to build and scale real-world robot datasets. For practitioners, RT-1 is the starting point for training custom VLA policies: collect your own demonstrations in the RLDS format, fine-tune the pretrained RT-1 checkpoint, and deploy with the provided ROS2 node. The well-documented data pipeline and preprocessing scripts make it significantly easier than building from scratch.

Key Points

  • 35M-parameter transformer trained on 130K real robot demonstrations.
  • Generalizes to unseen tasks, objects, and environments.
  • Robust to distractors, lighting changes, background clutter.
  • Open-source: RLDS format, JAX model, ROS2 inference node.
  • Distillable to 6M parameters for edge deployment.
Share

Related Papers

π0: A Vision-Language-Action Flow Model for General Robot Control

π0: A Vision-Language-Action Flow Model for General Robot Control

Karl Pertsch, Oliver Groth, Jonas Frey et al. · arXiv preprint · Oct 2024

π0 is a 3.5B-parameter VLA flow model from Physical Intelligence that achieves state-of-the-art general robot manipulation by mixing online RL with high-quality human demonstrations, available as an open-source PyTorch implementation.

foundation-models vla manipulation il
Code PDF Advanced
GitHub ★ 11,990 Code updated: May 2026
DynaFLIP: Rethinking Robotics Perception via Tri-Modal-Dynamics Guided Representation

DynaFLIP: Rethinking Robotics Perception via Tri-Modal-Dynamics Guided Representation

Jusuk Lee, Seungjae Lee, Jonghun Shin et al. · arXiv preprint · May 2026

Robot manipulation critically depends on perception that preserves the action-relevant aspects of a scene. Yet most robot learning pipelines are built upon visual encoders pre-trained for static recog

foundation-models perception manipulation representation-learning vla
PDF Intermediate
No code repo Code updated: May 2026