New Model Teaches Robots to Predict Visual Changes with Uncertain Latent Actions

New Model Teaches Robots to Predict Visual Changes with Uncertain Latent Actions

Zuojin Tang, Feifan Luo, Haoyun Liu, Botai Yuan, Dekang Qi +8 more

7 min readAug 30, 2026

A recent paper introduces DLAM (Distributional Latent Actions with Temporal Constraints), a method that models visual transitions in robots as probabilistic Gaussian distributions rather than single deterministic values. This allows the model to capture uncertainty in how a robot's actions change what it sees, leading to more accurate predictions and better downstream performance in real-world control tasks.

What the Researchers Built

DLAM is a representation learning framework that turns visual transition sequences—like a robot pushing a block from one spot to another—into probabilistic latent vectors with a diagonal Gaussian distribution. Previous work used deterministic latent actions, losing information about ambiguity or variability in the outcome. DLAM instead learns both a mean and a per-dimension variance for each transition, capturing how confident the model is about each feature of the change.

The key innovation is applying two types of temporal constraints to both the mean and the variance: composition constraints (forcing the sum of two consecutive latent actions to match the latent action of the combined transition) and reversal constraints (making the inverse of an action produce an equal and opposite latent). These constraints are applied to normalized triplets of equal time gaps, providing a richer training signal than deterministic methods. For real robot control, the encoder is frozen and only the mean latent actions are passed to a flow-matching policy that also receives robot joint commands, enabling the representation to refine performance without modifying the underlying policy architecture.

Diagram illustrating composition and reversal constraints applied to equal-gap triplets of latent actions

Key Results

The experiments evaluated DLAM against several baselines on both simulation and real-world robot tasks. Reconstruction quality—how well the model can regenerate observed visual changes from latent actions—was measured using a common scale-normalized probe. DLAM with full constraints (mean + variance, normalized composition and reversal) achieved the highest direct and cumulative reconstruction fidelity. Controlled ablations showed that the normalized mean constraints were the primary driver of improvement, while the learned variance and correlation-aware composition contributed complementary gains in downstream policy performance.

In policy transfer tests, where the frozen encoder provides only posterior-mean transition sequences as auxiliary flow-matching targets, DLAM consistently outperformed deterministic latent-action models. The full formulation also showed better relational diagnostics, meaning the latent space preserved temporal structure better than variants that omitted variance learning or used unnormalized constraints. While the paper does not release specific benchmark numbers, it states that DLAM achieves "best across reconstruction quality, relational diagnostics, and policy transfer" in its controlled setup. Gains were particularly notable on tasks requiring precise visual prediction, such as stacking and peg insertion.

How It Works

DLAM starts with a video stream of a robot's workspace. For each pair of consecutive frames (observation before and after an action), the model encodes them into a diagonal Gaussian latent action: a vector of means and a vector of log-variances. The reconstruction decoder then takes the source frame and the latent action distribution (via a reparameterized sample during training) and reconstructs the target frame. The loss involves both a reconstruction term and a KL divergence that keeps the latent distribution close to a standard Gaussian prior.

To enforce temporal consistency, DLAM samples triplets of observations with equal time gaps (e.g., frames t, t+k, t+2k). It computes three latent actions: from t to t+k, from t+k to t+2k, and from t to t+2k. The composition constraint forces the sum of the first two latents (in the mean and variance domain) to match the third. The reversal constraint forces the latent from t to t+k to be the negative of the latent from t+k to t when applied to the same visual state. Both constraints are normalized by the gap length to make them scale-invariant.

During training, the variances are learned jointly with the means through these constraints, but downstream policy only uses the mean vectors. The policy is a flow-matching model that generates action sequences conditioned on the current observation and a goal image. The frozen encoder provides a sequence of mean latent actions that are concatenated with robot proprioceptive data as auxiliary conditioning. This keeps the policy architecture unchanged while injecting rich temporal information from the pretrained representation.

Why This Matters for Robotics

Robots operating in open environments need to predict how their actions will change the world, often under uncertainty. DLAM's distributional approach captures that uncertainty explicitly, which can improve safety and robustness in tasks like manipulation, assembly, or mobile navigation. By using constraints that enforce composition and reversal, the model learns a latent space where actions can be algebraically combined—similar to how forces or velocities work in physics.

For companies deploying used cobots for sale or used industrial robots, integrating such learned dynamics models could reduce the amount of real-world fine-tuning needed when switching between tasks. The fact that DLAM works with a frozen encoder and standard policy backends makes it practical to drop into existing control stacks. The approach also connects to the broader trend of foundation models for robotics, where pretrained representations from visual data can accelerate learning on humanoid robots or warehouse robots without retraining from scratch.

Limitations and Open Questions

DLAM imposes constraints only on equal-gap triplets, leaving long-horizon generalization unexplored. The variance objective may degenerate to near-constant values over time, which would nullify the benefit of learning uncertainty. Since downstream transfer discards variance and uses only posterior means, the learned uncertainty functions primarily as an auxiliary training signal rather than providing calibrated confidence for decision-making. Additionally, the assumption of a diagonal (independent) variance per dimension may miss context‑ or dimension‑dependent dependencies that a full covariance could capture. Future work could extend constraints to variable time gaps, incorporate uncertainty into policy execution, and explore structured covariance models.

Real-world robot manipulation setup showing the workspace and task examples used in DLAM evaluation

Frequently Asked Questions

Is DLAM a model-based reinforcement learning method? No. DLAM is a representation learning technique that pre-trains a visual encoder with temporal constraints. The learned representation is then used as auxiliary input to a separate policy learning process, such as flow-matching imitation learning.

What types of robots can benefit from DLAM? DLAM works on any robot with a camera observing changes caused by actions. It has been demonstrated on simulation and real-world manipulation platforms, making it relevant for cobots, industrial arms, and mobile manipulators.

Does DLAM require ground-truth action labels? Yes, during pre-training the latent action sequence is derived from known robot commands or state differences. The constraints also rely on the temporal order of frames, but not on explicit goal labels.

How does DLAM compare to deterministic latent-action models? DLAM consistently outperforms deterministic baselines in reconstruction quality, temporal consistency diagnostics, and downstream policy success rates, especially in tasks with visual uncertainty.

Conclusion

DLAM introduces a principled way to learn distributional latent actions from visual observations using composition and reversal constraints on both mean and variance. The resulting representation improves reconstruction fidelity and downstream control without complicating the policy learning pipeline. This work opens a path toward more robust visual dynamics models for robots operating under real-world variability.

🍪 Cookie preferences

We use cookies to measure performance. Privacy Policy