Back to Feed
Robotics / Efficiency & Inference

Improving Robot World Models via State Grounding

Original: Is Forward Prediction Enough? Physical State Grounding for JEPA World Models

Listen to the summary

Uses a voice available on your device

Audio options
On this page 4 sections
Related concepts 3 concepts

Key Takeaways

  • Standard JEPA world models struggle to reliably recover robot physical states from latent representations.
  • PSG-JEPA improves performance on real-world tasks, reaching a 79.3% success rate compared to 60.0% for the LeWM baseline.
  • The grounding heads are used only during training and are discarded for inference, maintaining the original computational cost.
  • The method uses proprioceptive robot state and multi-horizon joint-angle changes as training signals to ground latents.

Summary & Methodology Analysis

The paper identifies that standard forward-prediction in Joint-Embedding Predictive Architecture (JEPA) world models fails to enforce reliable identifiability of robot-centric physical states. Because forward-only training leaves an identifiability gap where physical states are not reliably recoverable from latents, downstream planning and policy tasks suffer. Furthermore, inverse-dynamics supervision is often ambiguous, as multiple distinct action sequences can result in the same endpoint state change, making it an unreliable signal for physical transitions. To address this, the authors introduce PSG-JEPA. This approach retains the baseline JEPA encoder and causal action-conditioned predictor architecture, but adds lightweight state and transition heads. The state head maps individual latents to the proprioceptive robot state, while the transition head maps latent pairs to multi-horizon joint-angle changes. These additions act as auxiliary training objectives that force the model to ground its abstract latent representations in measurable physical realities. A key engineering advantage is that both the state and transition grounding heads are discarded after the training process is complete. By removing these heads before deployment, the model maintains its original inference architecture and incurs no additional computational cost for production usage. The authors evaluated this approach against the LeWM baseline on tasks including OGBench-Cube, OGBench-Scene, LIBERO-Goal, and Mobile ALOHA. The results show that PSG-JEPA achieves an average 79.3% success rate compared to 60.0% for the baseline, demonstrating that explicit physical state grounding significantly enhances task performance.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the primary contribution of this paper?

The researchers introduced a method to improve how robot world models represent physical states by adding grounding heads during training.

Q2. Does this method increase the computational cost of the model at inference time?

No. The additional grounding heads are discarded after training, so the inference architecture and computational cost remain unchanged.

Q3. Did this method improve robot performance?

Yes. PSG-JEPA achieved an average 79.3% success rate on real-world robot tasks compared to 60.0% for the LeWM baseline.

Q4. What architecture does PSG-JEPA use?

It retains the baseline JEPA encoder and the causal action-conditioned predictor architecture.

Q5. What signals are used to train the grounding heads?

The state head is trained using proprioceptive robot state, and the transition head is trained using multi-horizon joint-angle changes.

Q6. Why is forward-prediction considered insufficient in standard JEPA models?

Forward-only training results in a robot-centric identifiability gap where the actual physical state of the robot cannot be reliably recovered from the latents.

Q7. Why don't the authors just use inverse-dynamics supervision to solve the problem?

The authors note that inverse-dynamics supervision is ambiguous because multiple different action sequences can result in the same endpoint state change.

Q8. Which benchmarks were used to test PSG-JEPA?

The paper evaluated the model on OGBench-Cube, OGBench-Scene, LIBERO-Goal, and Mobile ALOHA.

Q9. Does the paper specify the training time or hardware requirements?

The paper does not specify these details.