Learning to Use Imagination: Progress-Conditioned Future Utilization for World Action Models
1. Paper overview
In one sentence: ProWAM uses recurrent execution progress to select useful imagined-future tokens for action generation, improving manipulation while relying on demonstration-derived progress and contact priors. motivationprogress-encoderattention-modulationreal-resultscomponents
| At a glance | What to know |
|---|---|
| Research problem | Source description Imagined futures have different utility during approach, contact and placement. ProWAM asks how action generation should adapt their influence as execution advances. Its motivating diagnostic compares failure-stage distributions and horizon-group perturbations; the former alone cannot establish absolute stage failure risk. motivationjoint-model |
| Core mechanism | Source description SS-DTPE learns latent progress slots using short-term feedback, Mamba memory, instruction-prefix alignment and temporal structure. progress-encoderprogress-objectives |
| A key reported result | Real-world long-horizon manipulation: Galaxea R1 Lite: 72; AgileX Cobot Magic: 71. Average full-task success rate (%). Eight tasks per platform, 150–200 demonstrations per task and 50 evaluation rollouts; average final cumulative stage completion. Author-reproduced Fast-WAM: 56 and 57. Executed robot-task gains of 16 and 14 percentage points; these are not generated-video quality scores. real-resultsreal-protocolmetrics |
| Reading caution | Source description The authors identify structured tabletop tasks and limited cross-embodiment evaluation as boundaries; each robot retains its own training and action configuration. limitations |
Core contributions
- Source description
SS-DTPE learns latent progress slots using short-term feedback, Mamba memory, instruction-prefix alignment and temporal structure. progress-encoderprogress-objectives
- Source description
HPIM converts progress into a global gate and token-specific relevance inside action-to-future attention. attention-modulation
- Author claim
The authors report gains across five simulation benchmarks and two real robots; ablations support both progress representation and modulation. liberorobotwinvlabenchroboevalmikasareal-resultscomponents
Figure 2. Future utility depends on both execution stage and prediction horizon. Original paper, p. 4 ↗
Excerpt from the authors’ paper; cropped without altering the figure or table.
How to read it. Start with the legends: purple and green on the left compare action-only and joint WAM policies, whereas the three colors on the right identify future-horizon groups. The left axis is failure-case ratio, and each policy's stage fractions sum to one. The right axis measures stage-completion drop after perturbing a group of future latents. Thus, the two panels answer different questions: where observed failures are distributed and which future groups a stage is sensitive to. Section 3.2 describes five Galaxea R1 Lite tasks with 100 trials each, separate from the later 50-trial-per-task evaluations. motivationreal-protocol
What it supports. Search/transit accounts for 0.43 of action-only failures and 0.22 of joint-WAM failures. In the perturbation chart, mid-horizon corruption causes a 0.17 search/transit completion drop, while near-horizon corruption causes the largest contact/grasp drop, 0.15. These observations motivate adapting future-token use to the current control stage.
Where the evidence stops. The left panel cannot establish absolute stage failure probabilities without total failure counts. The paper does not fully specify perturbation magnitude or horizon-group boundaries, and these diagnostic variants are not themselves the complete ProWAM ablation.
2. Motivation
2.1 The problem and the proposed response
Imagined futures have different utility during approach, contact and placement. ProWAM asks how action generation should adapt their influence as execution advances. Its motivating diagnostic compares failure-stage distributions and horizon-group perturbations; the former alone cannot establish absolute stage failure risk. motivationjoint-model
2.2 What this reading follows
A robot approaching an object and a robot already gripping it need different information. ProWAM turns that observation into a control architecture: first estimate execution progress from the previous action, current image and accumulated memory, then use progress to shape attention to predicted visual futures. The paper combines simulation benchmarks, physical robot rollouts and component ablations. Read its evidence in that order: the initial diagnostics motivate nonuniform future use, the architecture specifies how information flows, and the ablations test which additions matter. One distinction is essential throughout: the global gate interpolates between uniform and selective future weighting; it is not a switch that removes imagination. motivationprogress-encoderattention-modulationreal-resultscomponents
3. Research context
We place the paper in the collection through its world–action interface. The catalog labels and the reading’s assessment are shown separately.
| Catalog dimension | Recorded classification |
|---|---|
| Major category | Not assigned |
| Architecture | Not assigned |
| Prediction paradigm | Not assigned |
| Quadrant | Not assigned |
This table preserves the labels recorded at reading time. The current major category is WAMs. View the current classification.
3.1 Evidence-based assessment
Insufficient evidence to decide
The catalog is unassigned, so there is no substantive recorded quadrant to confirm. Architecture evidence supports joint future/action prediction through shared MoT attention, with modality-specific experts and a separately trained frozen progress encoder. The core is a joint generator, not an inverse-dynamics decoder; calling the whole pipeline One Model requires a definition accommodating the auxiliary encoder. joint-modelattention-modulationtraining-inference
This is the collection’s architectural analysis, not a new related-work survey. Benchmark comparisons and their protocols appear in Section 6.
4. Problem formulation
4.1 Inputs and outputs
| Inputs | Outputs |
|---|---|
|
|
4.2 Equations and their role
5. Method in detail
5.1 Learn progress without assuming an annotated stage label
Consider the drawer task: the policy must remember whether opening and placement already happened before attempting closure. A current image can be ambiguous, so SS-DTPE combines the previous action's observed outcome with persistent memory. Its short-term encoder models both action-to-observation and observation-to-action interactions; the long-term path maintains progress tokens and selectively reads the resulting evidence. Training supplies structure without manually labeling every stage. Instruction prefixes form a semantic axis, normalized demonstration time centers a soft Gaussian target on that axis, and monotonicity discourages reversing expected prefix completion. Temporal contrastive learning adds local coherence. These are priors learned from successful demonstrations, not ground-truth semantic timestamps. Stage 2 freezes the encoder, so action learning must use the progress representation already learned. progress-encoderprogress-objectivestraining-inferencereal-protocol
Figure 3. Recent feedback and recurrent history determine how future tokens influence action generation. Original paper, p. 6 ↗
Excerpt from the authors’ paper; cropped without altering the figure or table.
How to read it. Read left to right. The blue encoder combines the last executed action with the current observation, then lets memory-filtered progress query short-term evidence. In the orange global branch, a learned query reads observation, instruction, progress and progress change to predict the gate. In the lower branch, future tokens supply queries and progress supplies keys and values, matching Equation (26). The two outputs and the layer coefficient enter the joint backbone's action-to-future attention. The drawing presents FiLM as conditioning the vision encoder; Equation (12) specifies the actual scale-and-shift operation on encoded visual tokens. Use the equations for this placement and for the final attention normalization. joint-modelprogress-encoderattention-modulationtraining-inference
What it supports. Progress is an inference-time conditioning state rather than merely an auxiliary training target. It affects action generation before the action head by changing how the action stream reads future latents. Shared attention couples modality-specific video and action experts; a separately trained, frozen progress encoder supplies the control signal.
Where the evidence stops. The future-observation input depicts training context, not ground-truth future access during deployment. Also, a small global gate gives approximately uniform layer-scaled future weighting under Equation (30); it does not disable the future stream.
5.2 Translate progress into attention, keeping the normalization explicit
The gate reads both progress and its recent change, while the relevance branch asks which future tokens fit that progress state. Multiplying a softmax by the number of future tokens makes local relevance average one. Equation (30) then interpolates between uniform weights and those selective weights, scaled by a depth-dependent coefficient. The log-bias is applied only to future keys reached by action queries, and Equation (34) normalizes against every valid key. Algebraically, a gate of zero leaves the layer coefficient on every future token; a gate of one activates the full relevance pattern. Thus, my reading is that the gate controls selectivity directly. Its effect on total future-attention mass depends on how relevance aligns with the original logits, so more gate activation need not mean more total imagination use. attention-modulationhpim-ablations
5.3 Separate closed-loop success from evidence about the mechanism
During deployment, each replan updates progress from actual execution feedback and conditions the joint generator before an action chunk is executed. Table 6 therefore evaluates robot behavior, not the plausibility of predicted images. Its final stage counts a rollout only if all preceding stages succeeded; averaging those final-stage rates yields 72% on Galaxea and 71% on AgileX. Table 8 then asks whether progress or modulation accounts for the benefit, while Table 11 separates gating from local relevance. These comparisons support the proposed components under the reported protocols. My interpretation remains narrower than broad transfer: each platform uses its own configuration, seed uncertainty is absent, and the qualitative relevance plots illustrate allocation rather than independently establishing why an action succeeded. training-inferencemetricsreal-resultscomponentshpim-ablationsqualitative-relevancelimitations
5.4 Training and inference
During training
First train SS-DTPE on successful demonstrations: Gaussian instruction-prefix targets follow normalized time, an order penalty discourages backward semantic progress, and contrastive learning organizes temporal neighbors. Freeze SS-DTPE, then train WAM and HPIM with action/video rectified-flow losses and gate supervision. progress-objectivestraining-inferencejoint-model
The gate uses automatic weak labels. Gripper transitions and task-dependent height/motion cues identify contact windows, expanded by 20 frames on either side. Contact targets are zero, others one; unreliable labels are masked. Local relevance has no token-level labels. weak-labelsattention-modulation
Wan2.2-5B components combine with a 1B action expert, 32-action chunks, nine video frames and eight progress tokens. Stage 1 runs five epochs on four H100 GPUs, batch four per GPU; stage 2 runs ten epochs on eight H100s, batch sixteen per GPU. Both use AdamW, learning rate 0.0001, weight decay 0.01, cosine scheduling and clipping at 1.0. implementation
During inference
Reset memory at episode start, using a start-action token initially. At each replan, update progress from actual observation/action feedback, condition HPIM, generate and execute an action chunk. Figure 3 includes training future observations; deployment does not receive ground-truth future frames. Exact denoising steps and the executed chunk prefix are unspecified. training-inferencejoint-modelimplementation
5.5 Implementation flow
- Extract execution feedback
Encode the observation and previous action. Language-conditioned FiLM modulates encoded visual tokens; bidirectional cross-attention links the executed command with its observed outcome. Fuse these streams into current evidence. progress-encoder
- Update progress memory
A selective Mamba recurrence filters previous progress before Progress Attention queries current evidence. The result is latent progress slots, not predefined phase labels or an externally supplied completion percentage. progress-encoderjoint-model
- Estimate future relevance
The gate uses observation, instruction, progress and its change. Future-token queries attend to progress keys/values, undergo self-attention and receive mean-one relevance weights. This query direction agrees with Figure 3 and Equation (26). attention-modulationjoint-model
- Modulate joint generation
Combine the gate and relevance with a middle-emphasized layer schedule. Add a log-bias only to action-query/future-key logits, normalizing across all valid keys. Video and action experts communicate through shared MoT attention; an action head predicts commands. attention-modulationjoint-model
6. Experiments & results
ProWAM learns execution progress from recent action–observation feedback and recurrent memory, then uses that state to redistribute imagined-future attention inside a joint video–action policy. Its strongest evidence combines executed manipulation results with ablations separating progress estimation from future utilization.
6.1 Read the original evidence
Table 1. ProWAM leads the reported LIBERO average, with a remaining gap on the Long suite. Original paper, p. 11 ↗
Excerpt from the authors’ paper; cropped without altering the figure or table.
How to read it. Read the four suite columns before the average. Spatial, Object and Goal test different forms of task variation, while Long is the long-horizon suite. Appendix 1.1 specifies 40 tasks, 50 demonstrations per task and 2,000 evaluation trials. The last column averages the four suites rather than pooling this table with another benchmark. Compare the highlighted ProWAM row against Fast-WAM as the related WAM baseline and LingBot-VA as the strongest competing average. Preserve the dashes in the Seer row: missing suite values are not zero and do not support a complete average comparison. liberosimulation-protocolcomponents
What it supports. ProWAM reports 99.1% average success versus 97.6% for Fast-WAM and 98.5% for LingBot-VA, gains of 1.5 and 0.6 percentage points. Its 100.0% Object score ties other entries, and its 97.8% Long score trails LingBot-VA's 98.5%. The average advantage is therefore not a sweep of all suites.
Where the evidence stops. The near-ceiling averages lack uncertainty intervals. Table 1 is a benchmark comparison, not the same experiment as the no-module row in Table 8; those baseline suite numbers differ and should not be substituted for one another.
6.2 Results and evaluation conditions
| Task & protocol | Reported result | Comparison & interpretation |
|---|---|---|
| LIBERO manipulation Four suites, 40 tasks, 50 demonstrations per task and 2,000 evaluation trials. | 99.1 average; Spatial/Object/Goal/Long: 99.6/100.0/98.8/97.8. Success rate (%) | Fast-WAM 97.6 average; LingBot-VA 98.5 average. Best reported average, but LingBot-VA scores higher on Long (98.5%). No uncertainty intervals are supplied. liberosimulation-protocol |
| RoboTwin2.0 robustness Clean/randomized evaluation, 100 trials per task; mixture of 2,500 clean and 25,000 randomized demonstrations. | 93.9 clean, 92.8 randomized, 93.4 average. Success rate (%) | FlowWAM: 92.9/92.1/92.5. Reported average gain is 0.9 percentage points; embodied pretraining differs between these methods. robotwinsimulation-protocol |
| VLABench progress-aware manipulation Ten evaluated tasks, 50 episodes each. | 68.4 / 85.4 / 81.2. SR (%), IS and PS (reported percentage scale) | Author-reproduced Fast-WAM: 58.4/81.2/74.5; pi0.5: 65.4/80.4/77.8. Improves complete success and intermediate progress; Fast-WAM SR gain is 10.0 percentage points. vlabenchsimulation-protocolmetrics |
| RoboEval structured manipulation Eight task families, 30 variations, 100 episodes per task–variation pair. | 0.375 / 0.494. SR and TP (fractions) | Author-reproduced Fast-WAM: 0.313/0.404. Absolute gains are 0.062 SR and 0.090 TP; TP concerns partial advancement. roboevalsimulation-protocolmetrics |
| Mikasa-Robo temporal manipulation Five tasks; 250 demonstrations and 100 evaluations per task, 128×128 observations. | 50.8. Average success rate (%) | MemoryVLA++: 44.4; InterceptMedium: 68 versus 40. A 6.4-point average gain, with substantial task variation rather than universal dominance. mikasasimulation-protocol |
| Real-world long-horizon manipulation Eight tasks per platform, 150–200 demonstrations per task and 50 evaluation rollouts; average final cumulative stage completion. | Galaxea R1 Lite: 72; AgileX Cobot Magic: 71. Average full-task success rate (%) | Author-reproduced Fast-WAM: 56 and 57. Executed robot-task gains of 16 and 14 percentage points; these are not generated-video quality scores. real-resultsreal-protocolmetrics |
| Real-world generalization and robustness Four tasks per platform with lighting, scene/object variation; 50 trials per task. | Galaxea: 69; AgileX: 68. Average full-task success rate (%) | Author-reproduced Fast-WAM: 58 and 57. Gains concern specified variations; they do not establish cross-robot transfer. real-resultsreal-protocollimitations |
| Component and HPIM ablations Galaxea long-horizon tasks; controlled variants in Tables 8 and 11. | Full model: 72. Average full-task success rate (%) | Neither module: 56; SS-DTPE alone: 66; stateless HPIM: 62. Fixing the gate to one: 58; uniform local relevance: 62. Both modules and modulation levels contribute. Single-module variants change the progress interface, limiting a pure factorial interpretation. componentshpim-ablations |
6.3 Ablations and diagnostic examples
Read component removals and qualitative examples within their stated evaluation conditions.
Table 8. Progress estimation and progress-conditioned modulation contribute complementary gains. Original paper, p. 13 ↗
Excerpt from the authors’ paper; cropped without altering the figure or table.
How to read it. The two left columns name the interventions. With neither module, the model is the ablation baseline. SS-DTPE alone directly fuses its progress representation into the action stream. HPIM alone receives a stateless context from the current observation, previous action and instruction. Only the final row combines recurrent progress with attention modulation. The four middle columns are LIBERO suite success rates; the last two are Galaxea R1 Lite average full-task success on long-horizon and robustness tasks. They should not be confused with the nearby LIBERO Long column. These real-world quantities follow the cumulative final-stage success definition. componentsmetricsreal-protocol
What it supports. On Galaxea long-horizon tasks, the baseline reaches 56%, directly fused progress reaches 66%, stateless HPIM reaches 62%, and full ProWAM reaches 72%. The corresponding robustness results are 58%, 65%, 64% and 69%. Both additions help under the reported settings, and combining them produces the strongest row.
Where the evidence stops. The rows change how information enters the action model as well as which module is present. They support complementarity, but without matched parameter/compute reporting and seed uncertainty they do not uniquely identify a statistical interaction or explain every gain.
Table 11. Stage-dependent selectivity and token-specific relevance both matter in the reported ablations. Original paper, p. 14 ↗
Excerpt from the authors’ paper; cropped without altering the figure or table.
How to read it. The upper block tests the two modulation levels. The caption defines 'w/o Inter.' precisely: fix the gate to one, so local relevance applies at every stage. 'w/o Intra.' replaces token-wise relevance with uniform future modulation. Neither intervention means removing future prediction. The lower block asks a separate question, comparing a uniform depth schedule with the paper's middle-emphasized coefficient. Read Galaxea Long. and Gen. separately from LIBERO Long. Equations (28)–(34) explain why these settings change attention: relevance is mean-normalized, blended with a uniform term, and added as a log-bias before the full valid-key softmax. hpim-ablationsattention-modulationcomponents
What it supports. Galaxea long-horizon success is 58% without inter-progress gating and 62% without intra-progress relevance, compared with 72% for full HPIM. The uniform layer schedule reaches 70%. The larger reductions from the upper-block interventions support the importance of learning when to apply token-specific weighting in these tasks.
Where the evidence stops. Uniform relevance makes the gate algebraically ineffective in Equation (30), because both mixture terms become identical. These ablations therefore test selective redistribution, not a clean binary comparison between using and refusing imagination. Uncertainty and the exact uniform schedule value are not reported.
Figure 10. Learned relevance concentrates on different future tokens as execution changes. Original paper, p. 16 ↗
Excerpt from the authors’ paper; cropped without altering the figure or table.
How to read it. Read each row as separate execution states from one suite. The labels F1:F2 report the relevance-mass split between the two future frames shown in this diagnostic. The colored stage labels connect each image to its curve on the right. Section 5.6 first normalizes local relevance to total mass one, then pools over spatial positions and views for frame allocation. For the curves, it ranks all future latents across frames, views and positions. The horizontal axis is the percentage of top-ranked tokens; the vertical axis is cumulative relevance mass. The gray diagonal is uniform allocation, where the top 20% receives 20% of mass. qualitative-relevanceattention-modulation
What it supports. In LIBERO-Spatial, the top 20% of future tokens receive 93.0% of relevance during Object Approach, 44.7% during Lift and 89.5% during Transport. The frame splits also change from 95:5 to 49:51 to 78:22. This illustrates stage-dependent allocation rather than one fixed selection of future tokens.
Where the evidence stops. These are selected qualitative states and learned relevance coefficients, not calibrated prediction accuracy or causal importance scores. Their mass is normalized within future latents, so it does not measure the action stream's total attention to imagination.
7. Analysis & limitations
7.1 What the evidence leaves open
The authors identify structured tabletop tasks and limited cross-embodiment evaluation as boundaries; each robot retains its own training and action configuration. limitations
Algebraically, mean modulation equals the layer coefficient because relevance averages one. A low gate interpolates toward uniform weighting; it does not turn future attention off or guarantee reduced total future-attention mass. This is narrower than the prose description of overall reliance. attention-modulation
Tables lack confidence intervals and training-seed dispersion. Time-based prefix targets and monotonicity also leave recovery, repeated subtasks and reordered instructions insufficiently tested. liberoreal-resultsgate-supervisionprogress-objectives
7.2 Questions for discussion
- Does learned progress remain useful when a task requires undoing an earlier step or instruction order differs from execution order?
- Does the gate improve control by selecting future tokens, changing total attention mass, or both?
8. Reproducibility audit
8.1 Requirements and known gaps
Reproduction needs pretrained video components, synchronized robot demonstrations with reliable proprioceptive traces, and benchmark success implementations. Appendix metrics defer IS/PS and TP semantics to official benchmarks. implementationweak-labelsmetrics
Resolve omitted Gaussian width, temporal sampling, weak-label height/motion and segment/gap thresholds, denoising configuration and execution cadence. No latency or GPU-hour budget is supplied. Proposed comparisons should hold backbone, training budget and rollout protocol fixed. progress-objectivesweak-labelsimplementationtraining-inference
8.2 Proposed reproduction checks
The following checks are proposals motivated by the paper. They have not been run as part of this reading.
Check 1: Measure what the gate changes before interpreting it as reliance
Reader-proposed check, not performed: on held-out rollouts, record one layer's action-to-key logits, local relevance and valid-key mask. Freeze these quantities and sweep the gate from zero to one under Equations (30)–(34). Compare learned relevance with all-one and randomly permuted relevance controls, recording total future-attention mass and its entropy. All-one relevance should make the sweep inert; nonmonotonic total mass with learned relevance would falsify a simple 'higher gate always means more future attention' interpretation. Follow with matched rollouts to test whether the learned allocation improves stage completion. attention-modulationhpim-ablationsmetrics
Check 2: Test feedback-based progress when execution time becomes misleading
Reader-proposed check, not performed: train full SS-DTPE and the paper's Time-Only control with the same backbone, data and optimization budget. Evaluate matched drawer-task initial states with nominal execution, a controlled pause, and a safely induced failed placement requiring retry. Keep the weak-label pipeline and its 20-frame windows fixed; report gate trajectories, cumulative stage completion and final success across repeated seeds. If SS-DTPE simply advances with elapsed time during the pause or cannot recover after retry, its interpretation as feedback-grounded progress is weakened despite the original Time-Only ablation. progress-objectivesprogress-encoderhpim-ablationsreal-protocolweak-labelsmetrics
8.3 Reading coverage
Visual audit: Visually inspected the title/byline/affiliations and version on page 1, every original figure (1–13), every table (1–15), and all method, training, protocol, metric, weak-label and limitation pages supporting retained claims. All six final crops were separately viewed. Cross-checked Figure 3 query/key directions and modulation inputs against Equations (12)–(17), (24)–(34), and Figure 10 normalization against Section 5.6. The architecture guide distinguishes schematic FiLM placement from Equation (12) and training future observations from inference. The report preserves the distinction between gate-controlled selectivity and total future-attention mass. Reference-only pages 17–18 were read as text, not visually inspected; no claims depend on their cited works being independently verified. External videos, code and separate supplements remain uninspected.
PDF pages inspected for this edition: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23. Appendix coverage: reviewed.
Original figures and tables remain the work of the source’s authors. Extractions preserve their scientific content; any HTML wrapper layout is disclosed with each figure. The surrounding reading notes are our own.
Text reading scope & known omissions
- Abstract and Introduction
- Section 2: Related Work
- Section 3: Problem Formulation and diagnostics
- Section 4: Method, all subsections and Equations (6)–(36)
- Section 5: Experiments, all subsections and Tables 1–15
- Section 6: Conclusion
- References
- Appendix 1: Detailed Experimental Setup, all subsections
- Appendix 2: Qualitative Rollout Visualization
- Appendix 3: Limitations and Future Work
Outside the original text pass
- Text extraction does not reconstruct figure images; inspect the retained PDF for figures and equation/table layout.
- Separate supplemental material availability has not been fully verified.
- The extraction-only figure gap was addressed by inspecting all 13 original figures and all 15 tables in the PDF. All 11 supplied text chunks were read individually, including references and appendices.
- Identity/version scope: the title and all seven authors match the supplied catalog. The inspected artifact is arXiv:2609.06578v1, dated 6 September 2026. No other revision was supplied or compared. The IEEE TPAMI running header does not establish publication acceptance.
- Separate code, project-page contents, videos and other supplements were not inspected; no experiment was reproduced.
The visual audit above records the subsequent illustrated pass.
8.4 Traceable evidence
identityPDF p. 1, title, byline, author footnote and arXiv margin
The title and seven authors match the catalog. The artifact identifies arXiv:2609.06578v1 [cs.CV], 6 September 2026; three institutions are named.
Go to primary source ↓motivationPDF pp. 4–5, Section 3.2 and Figure 2
Five Galaxea tasks use 100 trials each. Failure distributions compare action-only and joint WAM variants; near/mid/long future-group perturbations produce stage-dependent completion drops.
Go to primary source ↓joint-modelPDF pp. 3–6, Section 3.1, Equations (1)–(11), Figure 3
A joint generative process combines modality-specific video/action experts through shared MoT attention. Progress conditions modulation before the action head.
Go to primary source ↓progress-encoderPDF pp. 6–7, Section 4.2, Equations (12)–(17), Figure 3
FiLM and bidirectional action–observation attention form current evidence. Mamba filters prior progress, which queries current evidence through Progress Attention.
Go to primary source ↓progress-objectivesPDF pp. 7–8, Section 4.2, Equations (18)–(23), Figure 4
Gaussian prefix targets use normalized demonstration time, with monotonic-order and temporal-contrastive objectives. Gaussian width and contrastive sampling details are not numerically specified.
Go to primary source ↓attention-modulationPDF pp. 8–9, Section 4.3, Equations (24)–(34)
The gate consumes observation, instruction, progress and progress change. Future queries attend to progress keys/values; mean-one relevance combines with gate and layer schedule. Only action-to-future logits receive log-bias; normalization includes all valid keys.
Go to primary source ↓training-inferencePDF pp. 9–10, Section 4.4
Train SS-DTPE independently, then freeze it for WAM/HPIM training. At deployment reset memory, initialize with a start-action token, and update progress for receding-horizon action chunks.
Go to primary source ↓weak-labelsPDF p. 9, Equation (35); pp. 21–22, Appendix Section 1.4, Equations (41)–(43)
Gripper, task-dependent height and optional motion cues define anchors, merged across arms and expanded by 20 frames before/after. Contact targets are zero, other targets one; unreliable labels are masked. Segment/gap refinement thresholds are unspecified.
Go to primary source ↓implementationPDF p. 10, Section 5.1, Model Details and Training Details
Wan2.2-5B and a 1B action expert use horizon 32, nine frames and eight progress tokens. Training uses 5 epochs on 4 H100s then 10 epochs on 8 H100s, AdamW and stated hyperparameters; inference solver steps and latency are not given.
Go to primary source ↓simulation-protocolPDF p. 19, Appendix Section 1.1
LIBERO: 40 tasks, 2,000 trials. RoboTwin: 2,500 clean plus 25,000 randomized demonstrations. VLABench: ten tasks, 50 episodes each. RoboEval: 100 episodes per task–variation pair. Mikasa: 250 demonstrations and 100 evaluations per task.
Go to primary source ↓metricsPDF p. 21, Appendix Section 1.3, Equations (37)–(40)
SR measures complete success; averages are task/suite means. IS/PS defer to benchmark definitions. Later cumulative real-world stages require all preceding stages to succeed.
Go to primary source ↓liberoPDF p. 11, Table 1, ProWAM, Fast-WAM and LingBot-VA rows
ProWAM Spatial/Object/Goal/Long is 99.6/100.0/98.8/97.8%, average 99.1%; Fast-WAM averages 97.6%; LingBot-VA averages 98.5% and scores 98.5% on Long.
Go to primary source ↓robotwinPDF p. 11, Table 2, ProWAM and FlowWAM rows
ProWAM Clean/Randomized/Avg. is 93.9/92.8/93.4%, without embodied pretraining; FlowWAM is 92.9/92.1/92.5%, with embodied pretraining.
Go to primary source ↓vlabenchPDF p. 11, Table 3 and asterisk definition; p. 12, VLABench discussion
SR/IS/PS: ProWAM 68.4/85.4/81.2; author-reproduced Fast-WAM 58.4/81.2/74.5; pi0.5 65.4/80.4/77.8.
Go to primary source ↓roboevalPDF p. 12, Table 4 and RoboEval discussion
Across eight tasks and 30 variations, ProWAM SR/TP is 0.375/0.494 versus author-reproduced Fast-WAM 0.313/0.404.
Go to primary source ↓mikasaPDF p. 12, Table 5
ProWAM scores 94/68/48/24/20% on SGT/IM/RC3/RC5/RC9, average 50.8%; MemoryVLA++ averages 44.4%. ProWAM does not win every task.
Go to primary source ↓real-protocolPDF p. 11, Section 5.2; pp. 19–21, Appendix Section 1.2
Real tasks use 150–200 demonstrations and 50 evaluation rollouts. Eight long-horizon and four robustness tasks run on Galaxea R1 Lite and AgileX Cobot Magic, with randomized positions and stated variations.
Go to primary source ↓real-resultsPDF p. 13, Tables 6–7, Avg. columns and dagger definitions
Long-horizon full-task success: Galaxea/AgileX 72/71% versus Fast-WAM 56/57%; robustness 69/68% versus 58/57%. Daggered baselines were author-reproduced under the same training/deployment settings.
Go to primary source ↓componentsPDF p. 12, Section 5.5 setup; p. 13, Table 8 and component-ablation discussion
Galaxea Long./Gen.: 56/58 without either module, 66/65 for directly fused SS-DTPE, 62/64 for stateless-context HPIM, 72/69 for the full model.
Go to primary source ↓encoder-ablationsPDF pp. 13–14, Tables 9–10 and accompanying discussion
Mamba outperforms listed no-aggregator, LSTM and Transformer variants. Galaxea Long.: semantic alignment alone 59%, with order consistency 67%, with temporal structure 72%.
Go to primary source ↓hpim-ablationsPDF p. 14, Tables 11–14 and Sections 5.5–5.6
Table 11 fixes d=1 without Inter., uses uniform relevance without Intra., and compares layer schedules. Galaxea Long.: 58/62/72% for these variants/full model; uniform schedule 70%. Time-Only Long./Gen. is 56/59% versus SS-DTPE 72/69%.
Go to primary source ↓gate-supervisionPDF p. 15, Table 15
Galaxea Long./Gen.: 59/61% without gate supervision, 72/69% with it; 20% label perturbation yields 68/66%. No seed variance or confidence intervals are shown.
Go to primary source ↓qualitative-relevancePDF p. 15, Section 5.6 relevance-analysis paragraph; p. 16, Figure 10
Normalize relevance to mass one, pool by future frame, and rank across frames/views/positions. LIBERO-Spatial top-20% mass is 93.0/44.7/89.5% for approach/lift/transport, with frame splits 95:5/49:51/78:22.
Go to primary source ↓limitationsPDF p. 23, Appendix Section 3
Evaluation is relatively structured tabletop manipulation. Large-scale cross-embodiment transfer is outside scope; training, observations and action representations remain platform-specific.
Go to primary source ↓8.5 Primary sources
Learning to Use Imagination: Progress-Conditioned Future Utilization for World Action Models ↗
PDF · 17,930 extracted words
Source fingerprint
1f8d8f64b2fbe355bb28861ffb8b883b280ed0389f249d0f95821d5593b13b37