Back to Feed
Robotics / Reinforcement Learning

Using Temporal Distance for Robot Training

Original: RynnValue: Scaling Robotic Value Foundation Models with Temporal Distance

Listen to the summary

Uses a voice available on your device

Audio options
On this page 4 sections
Related concepts 7 concepts

Key Takeaways

  • RynnValue uses temporal distance as a proxy for reward, eliminating the need for manual preference labeling.
  • The model architecture uses RynnBrain as a backbone to process visual and language inputs for temporal prediction.
  • RynnValue-8B achieved an average Kendall’s τa of 0.675, outperforming state-of-the-art preference-supervised benchmarks.
  • Policy success rates improved to 72.5% in real-world scenarios and 82.5% in offline reinforcement learning settings.

Summary & Methodology Analysis

RynnValue addresses the scaling bottleneck in robotic learning caused by reliance on task-internal anchors like human preferences. The authors trained the model on a heterogeneous dataset spanning over 7,000 hours and 3M instruction-conditioned trajectory clips. By deriving temporal-distance labels directly from timestamps and applying a completion cutoff to each trajectory, the model learns to predict both absolute time to completion and relative displacement between observations. To prevent the model from learning shortcuts, the team implemented random temporal sampling and order shuffling, ensuring the model decouples observation sequence position from actual temporal distance. This system uses value-isolation attention, a mechanism that restricts queries to specific language-visual contexts to avoid value extrapolation, and potential-based shaping to convert predictions into dense rewards for policy learning.

The architecture leverages RynnBrain as its core visual-language backbone. This integration allows the model to handle diverse robotic inputs, including real-world, simulation, and egocentric data. By predicting progress through temporal distance, RynnValue creates a scalable reward function that generalizes better across various robot embodiments than methods restricted to narrow task-specific anchors. The framework demonstrates significant empirical gains, with RynnValue-8B yielding a Kendall’s τa of 0.675 on the RBM-EVAL-OOD suite, surpassing preference-supervised models at 0.655 and progress-only baselines at 0.292. In practical testing, the application of potential-based shaping boosted real-world policy success from 52.5% to 72.5% and offline RL success from 63.8% to 82.5% compared to the strongest existing baselines.

Despite these performance improvements, the model faces specific technical constraints. Current estimations are limited to short windows of observations, which restricts the model utility for long-horizon tasks. Additionally, the visual models may struggle with precision-sensitive operations where subtle physical states, such as grasp stability or exact placement, are difficult to distinguish visually. The paper does not specify the exact latency or memory overhead for inference, but notes that these visual ambiguities remain a bottleneck for high-precision scenarios.

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 core problem this paper solves?

Robot learning currently relies on manual task-internal anchors like user preferences, which do not scale well. This paper introduces a foundation model that uses time as a scalable target.

Q2. How does RynnValue determine how well a robot is doing?

It predicts the temporal distance to the completion of a task, essentially measuring how much time is left to reach the goal, and converts this into a reward signal.

Q3. Does this require human preference labels?

No, it is a preference-free method that uses timestamp data from trajectory clips.

Q4. What is shortcut-suppression?

It is a training technique involving random temporal sampling and order shuffling to ensure the model does not just memorize the position of a clip in a sequence.

Q5. What visual-language backbone does RynnValue use?

It uses RynnBrain to process the visual and linguistic input data.

Q6. What is value-isolation attention?

A mechanism that ensures each query only attends to its specific language-visual context to prevent value extrapolation errors.

Q7. How does the model compare to preference-supervised benchmarks?

RynnValue-8B achieved an average Kendall’s τa of 0.675, which outperformed the preference-supervised benchmark of 0.655.

Q8. What are the limitations regarding task length?

The model is currently limited by estimating temporal distance from short windows of observations, making it less effective for long-horizon tasks.

Q9. Are there specific tasks where the model struggles?

Yes, it struggles in precision-sensitive tasks where visual models cannot easily distinguish subtle differences in grasp stability or placement.