Command Palette
Search for a command to run...
pi0.7: 창발적 역량을 갖춘 조종 가능한 범용 로봇 파운데이션 모델 (Steerable Generalist Robotic Foundation Model)
pi0.7: 창발적 역량을 갖춘 조종 가능한 범용 로봇 파운데이션 모델 (Steerable Generalist Robotic Foundation Model)
초록
본 연구에서는 광범위한 시나리오에서 강력한 out-of-the-box 성능을 구현할 수 있는 새로운 로봇 파운데이션 모델(robotic foundation model)인 π0.7을 선보입니다. π0.7은 다양한 주방 가전제품을 사용하는 다단계 작업(multi-stage tasks)을 포함하여, 학습되지 않은 미지의 환경에서도 다양한 언어 지시(language instructions)를 수행할 수 있습니다. 또한, 예를 들어 로봇이 빨래를 접는 작업을 이전에 본 적이 없음에도 수행할 수 있는 zero-shot cross-embodiment generalization 능력을 제공하며, 에스프레소 머신 작동과 같이 까다로운 작업을 별도의 미세 조정 없이도 훨씬 더 전문화된 RL-finetuned 모델에 필적하는 수준으로 수행할 수 있습니다.π0.7의 핵심 아이디어는 학습 과정에서 다양한 context conditioning을 사용하는 것입니다. prompt에 포함된 이러한 conditioning 정보는 모델이 다양한 전략을 사용하여 여러 작업을 정밀하게 수행할 수 있도록 제어합니다. 이 모델은 단순히 무엇을 해야 하는지를 설명하는 언어 명령뿐만 아니라, 작업 수행에 관한 메타데이터 및 subgoal images를 포함하여 작업을 수행하는 방식이나 전략을 설명하는 추가적인 multimodal 정보에 기반하여 conditioning됩니다. 이를 통해 π0.7은 매우 다양한 데이터를 활용할 수 있습니다.
One-sentence Summary
pi0.7 is a steerable generalist robotic foundation model utilizing diverse context conditioning with multimodal prompt information to precisely steer task strategies, delivering strong out-of-the-box performance in unseen environments and zero-shot cross-embodiment generalization for tasks like laundry folding while matching specialized RL-finetuned models on challenging tasks such as operating an espresso machine.
Key Contributions
- The paper introduces π0.7, a robotic foundation model designed to deliver strong out-of-the-box performance across a wide range of scenarios without task-specific post-training.
- The method utilizes diverse context conditioning during training by augmenting language commands with strategy metadata and subgoal images to resolve ambiguity in diverse datasets.
- Evaluation results demonstrate zero-shot cross-embodiment generalization and the ability to perform challenging tasks at a level matching specialized RL-finetuned models.
Introduction
Physical intelligence seeks to establish generalist capabilities in robotics similar to large language models, but prior vision-language-action models lack compositional generalization and often require task-specific fine-tuning. Training on diverse datasets often leads models to average out different strategies, resulting in suboptimal performance. The authors introduce pi_0.7, a steerable generalist robot foundation model that leverages diverse context conditioning to resolve ambiguity in mixed-quality data. By enriching prompts with detailed language, subgoal images, and strategy metadata, the model learns to compose skills effectively without fine-tuning, enabling zero-shot cross-embodiment transfer and robust performance on complex dexterous tasks.
Dataset
- Composition and Sources: The authors aggregate demonstration data from diverse robot platforms (static, mobile, single, and bimanual) operating in lab, home, and wild environments. The mixture also includes autonomous data from policy evaluations, human interventions, open-source robot datasets, egocentric human videos, and auxiliary web data for visual question answering and object prediction.
- Suboptimal Data Strategy: Departing from classic pipelines, the dataset intentionally includes lower quality demonstrations, failure episodes, and trajectories from prior model versions. This approach enables the model to distill capabilities from RL-trained specialists and improves robustness across varied states.
- Metadata Processing: Episode metadata is constructed to label task execution attributes. Speed is discretized into 500-step intervals, quality receives a score from 1 to 5, and human annotators identify mistake segments within action sequences.
- Training and Usage: Context modalities including instructions, images, and metadata undergo dropout during training to ensure flexible prompting. At inference, the model uses ground-truth metadata to condition performance on desired speed, quality, and accuracy.
Method
The π0.7 model is a Vision-Language-Action (VLA) foundation model designed for generalist robot manipulation. It builds upon the π0.6 architecture and the MEM memory system, extending them with multi-modal context conditioning. The model consists of a 4B-parameter VLM backbone initialized from Gemma 3, which includes a 400M-parameter SigLIP vision encoder, and a separate 860M-parameter action expert. The total parameter count is approximately 5B.
The authors leverage a flow matching objective for the action expert to predict continuous action chunks. The VLM backbone processes visual observations and language inputs, while the action expert attends to these activations to generate robot commands. This separation allows for fast inference at runtime while maintaining stable training for the backbone via discrete cross-entropy loss on FAST tokens, a technique known as Knowledge Insulation.
Refer to the architecture diagram below for a detailed view of the model components and data flow.

A key innovation in π0.7 is the expansion of the context prompt Ct beyond simple language instructions. The model accepts a rich set of inputs including multi-view observation memory, task instructions, subtask instructions, episode metadata, and subgoal images. This multi-modal prompting enables the model to learn from diverse and heterogeneous datasets, including suboptimal behaviors and failures.
The system integrates a high-level policy and a world model to generate these contextual elements at runtime. The high-level policy produces semantic subtask instructions, while the world model generates subgoal images that depict the desired near-future state of the scene. These subgoal images provide spatial grounding that language alone may lack.
Refer to the system overview below illustrating how robot and non-robot data feed into the training pipeline and how the model operates during inference.

During training, the model is exposed to a combination of real future images and generated subgoal images. To handle the variability in image quality and delay, the authors employ a specific sampling scheme where real images are sampled from future timesteps or generated by the world model. The training objective maximizes the log-likelihood of the action chunk given the observations and context:
maxθED[logπθ(at:t+H∣ot−T:t,Ct)]
The model utilizes a block-causal masking scheme where observation and subgoal tokens use bidirectional attention, while text tokens use causal attention. This structure is visualized in the attention mask diagram below.

At inference time, the model supports Classifier-Free Guidance (CFG) on the episode metadata to elicit specific behaviors such as higher speed or quality. The subtask instructions and subgoal images are refreshed whenever the semantic intent changes or after a fixed time interval. The following sequence demonstrates the model executing a complex task involving an air fryer using step-by-step verbal coaching and subtask instructions.

Experiment
The evaluation assesses the π0.7 model across diverse robot platforms and tasks, specifically testing out-of-the-box dexterity, instruction following, cross-embodiment transfer, and compositional generalization. Results demonstrate that π0.7 matches specialized fine-tuned models on complex manipulation tasks without post-training and successfully transfers skills to unseen robot morphologies by adapting manipulation strategies. Furthermore, the model exhibits superior language following capabilities that allow it to overcome dataset biases and perform new long-horizon tasks through verbal coaching, while effectively leveraging large, mixed-quality datasets for improved generalization.