Orca Unifies World Modeling Across Text, Vision, and Action

Next-State-Prediction trains a shared latent space from video, events, and VQA data, improving balanced downstream readouts with a frozen backbone.

Editorial Desk·July 28, 2026·5 min readmoderate

Underlying Paper

Orca: The World is in Your Mind

We introduce Orca, an initial instantiation of a general world foundation model. Orca learns a unified world latent space from multimodal world signals and exposes it through multimodal readout interfaces. Rather than optimizing isolated next-token, next-frame, or next-action prediction, we are centered on Next-State-Prediction modeling, offering a unified state-transition modeling route toward understanding, predicting, and acting upon the world. Orca learns through two complementary paradigms: unconscious learning captures dense natural state transitions from continuous videos, and conscious learning models sparse meaningful state transitions by language-described events and VQA supervision. For pre-training, we construct a large-scale world-learning inventory data, including 125K hours of video data and 160M event annotations. After pre-training, Orca learns a unified world latent space. To examine whether the learned latent supports downstream, we evaluate it by three representative downstream readouts: text generation, image prediction, and embodied action generation. Orca's backbone is frozen, and only the lightweight modality-specific decoders are trainable. Experiments show the scalability of the proposed paradigm and verify that stronger world latent enables stronger downstream readouts. Orca outperforms similar-sized specialized baselines. These results show that Orca, as a general world foundation model, presents a promising approach to understanding, predicting, and acting upon the world. Finally, we discuss the current limitations, aiming to provide useful insights and inspiration for the community.

arXiv:2606.30534Submitted: Jul 20, 2026v3

Most multimodal systems still optimize separate targets: next-token prediction for language, frame prediction for video, or action prediction for control. Orca reframes the target as Next-State-Prediction, where the model learns transitions between world states and then exposes that latent state through task-specific readouts. The paper’s claim is not that this is a finished general world model, but that a shared latent trained on multimodal transition signals can support language, image, and robot-action outputs without retraining the backbone.

Core Contribution

The central contribution is a pre-training recipe for a unified world latent space. Orca combines three supervision types: observation-only state transition from continuous video, event-conditioned state transition from language-described changes, and VQA response generation to preserve a language interface. This is a useful distinction from conventional video-language pre-training: the model is not only asked to describe what is visible, but to represent how a state changes under time, events, and questions.

The scale is also part of the contribution. The authors assemble an inventory with 125K hours of video and 160M event annotations, although the limitation section says the reported training uses only one-tenth of that inventory. That matters for interpreting the result: the paper provides an early scaling argument, not a full test of the proposed data regime.

Technical Approach

Orca’s training pipeline has two learning modes. The paper calls dense video transition learning “unconscious learning,” because it captures natural state evolution without explicit semantic intervention. It calls event and VQA supervision “conscious learning,” because those samples bind transitions to language-described events and question-answer behavior. Figure 3 summarizes the three data channels: video for observation-only transitions, video plus event annotations for event-conditioned transitions, and VQA data for response generation.

Figure 3. Overview of pre-training data. Orca’s pre-training data includes video, event, and VQA data. A. Video Data supports 1) Observation-only state transition, A. Video Data and B. Event Data support 2) Event-conditioned state transition, and C. VQA Data supports 3) VQA response generation.

After pre-training, the authors freeze the Orca backbone and train lightweight modality-specific decoders. The evaluation uses three readouts: text generation, instruction-conditioned image prediction, and embodied action generation. The action readout is a DiT-based action expert trained with flow matching; the appendix lists 8 DiT blocks, 12 attention heads, 16-dimensional actions, a 30-step action horizon, and 20,000 training steps with the Orca backbone frozen. That frozen-backbone setup is important because it tests whether the latent representation transfers, rather than whether each downstream model can absorb task-specific supervision from scratch.

Results and Analysis

The cleanest evidence comes from the ablation table. Using all three losses gives the most balanced downstream profile: 51.8 on text generation, 59.8 on image prediction, 32.4 on action generation, and a 48.0 average. Removing one objective shifts the model toward weaker or missing readouts. Event plus VQA without observation-only transition reaches 50.1 on text and 54.7 on image prediction, but action generation falls to 23.0. Observation plus event without VQA reaches 58.2 on image prediction and 30.9 on action generation, but the text readout is reported as non-working in the table. Observation plus VQA gives the best action score among two-loss settings, 32.6, but has no image-prediction score.

That pattern supports the paper’s main mechanism more strongly than a single headline benchmark would. Observation-only transition appears tied to action, event-conditioned transition to vision, and VQA to maintaining the language interface. The all-loss model is not best on every single column, but it is best on the average and avoids the failure modes of the partial settings. For a world-latent paper, that balance is the relevant result.

The infrastructure appendix is less central scientifically but gives useful scale context. On H100 GPUs, the optimized training stack reaches 2.91 samples/sec/GPU, compared with 0.97 for the FSDP2 baseline and 0.66 for the StarVLA pipeline. The gains come from FSDP2, chunked cross-entropy, activation recomputation, and forward/backward pre-fetching. This does not prove the modeling idea, but it explains how the authors make the multi-branch training setup practical.

Caveats

The limitations are substantial and mostly acknowledged by the authors. Orca learns mainly from vision and language, while many physical transitions depend on audio, touch, force, light, proprioception, or other signals. The latent is also supervised through a pre-trained VLM and a frozen vision encoder, so it is not yet a native world-state representation learned from raw multi-source signals. Experiments are mainly at 4B and 0.8B scale, and the paper says the 4B model shows a trade-off among language, image, and action readouts as training progresses.

The evaluation should therefore be read as promising but partial. PRICE-V0.1 is a new image-prediction benchmark rather than an established community test, state-transition supervision is short-horizon because it is constrained by event annotations, and downstream readouts cover only language, vision, and action. The paper makes a plausible case that Next-State-Prediction is a coherent training target; it does not yet show a general world foundation model in the strong sense.

Evidence Box

moderate

Key Claims

  • Next-State-Prediction learns a shared world latent space
  • Combined transition and VQA losses produce more balanced readouts
  • Frozen Orca latents support text, image, and action decoders
  • Training infrastructure makes multi-branch pre-training practical

Key Results

  • 125K hours of video data and 160M event annotations in the world-learning inventory
  • All three losses score 51.8 text, 59.8 image, 32.4 action, and 48.0 average in Table 5
  • Event plus VQA without observation-only transition drops action generation to 23.0 versus 32.4 with all losses
  • Optimized H100 training reaches 2.91 samples/sec/GPU versus 0.97 for FSDP2 and 0.66 for StarVLA

Limitations & Caveats

  • Learns mainly from vision and language rather than audio, tactile, force, light, or richer physical signals
  • Latent space is still supervised by pre-trained VLM and frozen vision-encoder spaces
  • Reported experiments are mainly at 4B and 0.8B scale and use only one-tenth of the inventory data
  • State-transition supervision is short-horizon and downstream readouts cover only language, vision, and action

Related Articles

Readers are encouraged to consult the original arXiv paper for complete details. SOTA Papers does not make claims beyond what is supported by the authors' reported evidence.