Latent Actions from Factorized Transition Effects under Agent Ambiguity
Source
- Raw Markdown: paper_otf-lam-2026.md
- PDF: paper_otf-lam-2026.pdf
- Preprint: arXiv:2606.30544
- Official project page: hazel-heejeong-nam.github.io/LAM
- Official code: Hazel-Heejeong-Nam/lam_agent_ambiguity
Credibility And Status
This is a 2026 Brown University arXiv preprint submitted on 2026-06-29 and marked by arXiv as accepted to the ICML 2026 Workshop on Compositional Learning. It has an official project page and an official public GitHub repository with an MIT license. Treat it as credible current workshop/preprint evidence for latent action modeling, not as a peer-reviewed main-conference result.
Core Claim
OTF-LAM argues that observation-only latent action models should not treat every visual transition as a direct proxy for the controlled action. In multi-object or distractor-rich scenes, a transition can mix agent motion, passive object motion, camera motion, and background dynamics. The paper proposes to first factorize the observed transition into reusable local transition-effect primitives, then aggregate those factors into state-aware action-like latents for downstream prediction and policy learning.
Method Notes
- Observed Transition Factorization (OTF) trains a VQ-VAE-style module on motion-centered transition inputs rather than next RGB frames.
- OTF represents each transition as a sparse set of active codebook primitives with spatial occupancy and activation strength.
- OTF-LAM freezes the OTF vocabulary, builds state-aware factor tokens from active primitives and the current frame, gates relevant factors, and aggregates them into a compact latent action.
- OTF-LAM-Dino replaces pixel-space decoding with future prediction in frozen DINOv2 representation space.
- Policy learning still needs a small supervised bridge: the paper maps predicted latent actions to true actions using action-labeled trajectories from Distracting Control Suite tasks.
flowchart LR Pair["observation pair x_t, x_t+1"] Motion["motion-centered transition signal"] OTF["OTF vocabulary"] Factors["observed-transition factors"] Aggregator["state-aware factor aggregator"] Latent["latent action z_act"] Dynamics["forward dynamics or DINO predictor"] Policy["action decoder / policy bridge"] Action["typed action when supervised"] Pair --> Motion --> OTF --> Factors --> Aggregator --> Latent Latent --> Dynamics Latent --> Policy --> Action
Evidence And Results
- The paper tests OTF primitive transfer on controlled Moving MNIST carrier shifts and Distracting Control Suite morphology shifts.
- The learned OTF vocabulary degrades less than a monolithic global VQ-VAE bottleneck under the reported transfer settings, suggesting that factorized local transition effects are more reusable than one compact global transition latent.
- Downstream policy learning with OTF-LAM and OTF-LAM-Dino is competitive with or stronger than LAM baselines under complex transition ambiguity, but the paper does not claim that OTF wins every fixed-environment benchmark.
- OTF-LAM-Dino generally strengthens the interface by predicting future frozen DINOv2 features rather than forcing the model to reconstruct every pixel through an environment-specific decoder.
- The official project narrative emphasizes video-game-like ambiguity: in a frame transition, the player, camera, enemies, background, particles, and UI may all change at once.
Boundary With Existing Latent Action Work
Genie is the anchor for learning a controllable latent action space from unlabeled video, and VLA-JEPA is the current robotics VLA branch for leakage-free latent-action-conditioned prediction. OTF-LAM adds a different warning: a monolithic latent action can absorb non-agent transition sources because observation-only inverse dynamics sees effects, not causes.
The useful contribution is therefore not “latent actions solve missing action logs.” It is a more careful intermediate representation for cases where the action source is ambiguous. The wiki should still prefer explicit typed actions, control inputs, interventions, timing, status, and outcomes whenever those can be logged.
Limitations And Gotchas
- The work is a workshop/preprint source, with controlled Moving MNIST and DCS-style evaluations rather than broad open-world game, web, robotics, or telemetry deployments.
- Learned observed-transition primitives are local visual effects, not pure physical motion variables and not causal actions.
- The latent action becomes a typed action only after an additional supervised mapping step.
- OTF can trade shortcut capacity for reusability; a monolithic LAM may exploit stable fixed-environment correlations that OTF intentionally avoids.
- The evidence is image/video trajectory evidence. It is relevant to time-series world-model design by analogy and data-contract pressure, not as direct numeric multivariate time-series evidence.
Foundation TSFM Relevance
| Agenda slot | Verdict | Evidence | Missing pieces |
|---|---|---|---|
| Control and counterfactuals | adjacent | OTF-LAM learns action-like latents from observation-only image/video transitions and maps them to true actions with small labeled bridges. | No numeric time-series action-conditioned rollout, intervention semantics, or counterfactual validation. |
| Data contracts | warning | The paper shows that missing action channels force the model to infer from mixed observed effects, where background, camera, and distractor changes can contaminate latent actions. | Operational systems should log typed actions, control inputs, outcomes, timing, status, and failures directly. |
| Representation quality | adjacent | Factorized observed-transition primitives separate local transition effects before aggregating to an action-like latent. | Needs dense latent-state probes, typed-action alignment tests, and non-vision transfer evidence. |
| Benchmarks: what level of modeling is tested? | warning | Reported tests separate primitive transfer and downstream policy utility under controlled ambiguity. | Needs richer environments, closed-loop planning, safety constraints, and causal action-effect diagnostics. |
Links Into The Wiki
- OTF-LAM
- Latent Action Models
- Latent-Space Predictive Learning
- World Models
- Robotics Time-Series Modeling
- Action-Conditioned Time-Series Datasets
- Foundation Time-Series Model Research Agenda
- Genie
- VLA-JEPA
Open Questions
- How much labeled action data is needed to map OTF-style latent actions onto typed actions across richer game, robot, or GUI environments?
- Can factorized observed-transition primitives help recover missing operator-action channels in digital operations, or would they mostly expose that the data contract should be fixed?
- Which metrics distinguish a reusable transition-effect vocabulary from a codebook that merely stores appearance or camera-motion shortcuts?
- Can OTF-LAM-Dino-style frozen representation prediction transfer from DINOv2 image features to numeric, graph, or event-stream latent states?