[Paper Notes] DexWorldModel: Causal Latent World Modeling towards Automated Learning of Embodied Tasks

16 minute read

Published:

DexWorldModel proposes a Causal Latent World Model (CLWM) for manipulation. Its main design choice is to move world-action generation away from pixel reconstruction and into a semantic latent space: predict future DINOv3 features, then decode action chunks conditioned on those predicted future semantics.

My read: the paper is about making world-action models deployable, not just imaginative. CLWM targets three bottlenecks at once: pixel-level prediction wastes capacity on visual texture, autoregressive history makes memory grow with horizon, and diffusion-style generation slows closed-loop control. The proposed system answers these with DINOv3 latent targets, Dual-State TTT Memory, and Speculative Asynchronous Inference.

Paper Info

The paper is “DexWorldModel: Causal Latent World Modeling towards Automated Learning of Embodied Tasks” by Yueci Deng, Guiliang Liu, and Kui Jia from DexForce AI. It appears on arXiv as arXiv:2604.16484, submitted on April 13, 2026.

The paper also introduces EmbodiChain as the training-data engine behind CLWM’s post-training stage. The referenced platform is github.com/DexForce/EmbodiChain.

Core Problem

World Action Models (WAMs) extend VLA policies by generating future world states before generating actions. A common formulation is:

[ \hat{o}{t+1}\sim p\theta(\cdot\mid o_{\le t},a_{<t},l), ]

[ a_t\sim g_\psi(\cdot\mid o_{\le t},a_{<t},\hat{o}_{t+1},l). ]

This gives the policy an explicit future-state interface. The cost is heavy: if (\hat{o}_{t+1}) lives in pixel space or low-level VAE latent space, the model spends capacity on lighting, texture, and background details. If the model keeps all history through a Transformer KV cache, memory scales as (O(T)). If each action waits for sensing, full denoising, and execution in sequence, the robot pays a large latency penalty at every control chunk.

DexWorldModel’s thesis is that a manipulation world model should predict the part of the future that matters for action: interaction semantics.

CLWM Architecture

CLWM has two coupled generative modules under a Mixture of Transformers (MoT) design:

ModuleTargetRole
Latent Video Modelfuture DINOv3 feature (f_{t+1})predicts semantic world evolution
Action Modelaction chunk (a_t)decodes control from predicted future semantics

The visual feature is extracted by a frozen DINOv3 model:

[ f_t=\Phi_{\mathrm{DINO}}(o_t)\in\mathbb{R}^{C\times H’\times W’}. ]

The paper uses patch size (P=16). The two generators share a core Transformer initialized from Wan2.2-5B, while keeping separate input/output projections and flow-time embeddings:

[ \phi_{\mathrm{vid}}=\phi^{out}{\mathrm{vid}}\circ\phi{\mathrm{share}}\circ\phi^{in}{\mathrm{vid}}, \quad \phi{\mathrm{act}}=\phi^{out}{\mathrm{act}}\circ\phi{\mathrm{share}}\circ\phi^{in}_{\mathrm{act}}. ]

Generation is autoregressive and causal. First, the Latent Video Model predicts the next semantic feature via conditional flow matching:

[ \mathcal{L}{\mathrm{video}} = \mathbb{E}\left[ \left\lVert v{\phi_{\mathrm{vid}}}(f^{(s)}{t+1},s\mid h{\le t},l) - \dot{f}^{(s)}_{t+1} \right\rVert^2 \right]. ]

Then the Action Model predicts an action chunk:

[ a_t={a_{t,1},a_{t,2},\ldots,a_{t,\tau}}, ]

with (\tau=16) in the experiments. The action vector is compact for dual-arm control: each arm contributes a 7-DoF end-effector pose, 7 joint positions, and 1 gripper state, giving ((7+7+1)\times 2=30) continuous dimensions.

The action loss is also a flow-matching objective, conditioned on history, language, and the predicted future feature:

[ \mathcal{L}{\mathrm{action}} = \mathbb{E}\left[ \left\lVert v{\phi_{\mathrm{act}}}(a^{(s)}t,s\mid \tilde{h}{\le t},l,\tilde{f}_{t+1}) - \dot{a}^{(s)}_t \right\rVert^2 \right]. ]

A small but important detail is history augmentation. During training, with probability (p=0.5), the model injects Gaussian noise into historical latent features:

[ \tilde{f}{\le t}=(1-s{\mathrm{aug}})\epsilon+s_{\mathrm{aug}}f_{\le t}, \quad s_{\mathrm{aug}}\in[0.5,1]. ]

This teaches the action model to tolerate imperfect predicted histories. That matters later because SAI deliberately starts inference from speculative future features before the real observation arrives.

Dual-State TTT Memory

Standard autoregressive world models preserve history through KV cache. For long-horizon robot interaction, that creates a growing memory and latency burden:

[ \text{KV cache memory}\sim O(T). ]

CLWM replaces the cache with a Test-Time Training (TTT) Memory layer. Instead of storing all historical tokens, the model compresses history into dynamically updated layer weights. The TTT-MLP is trained through a self-supervised reconstruction objective:

[ \ell_{\mathrm{self}}(W;z_t) = \lVert f(\theta_K z_t;W)-\theta_V z_t\rVert^2. ]

After the inner-loop weights update to (W_t), the query projection extracts the hidden state:

[ l_t=f_{\mathrm{TTTmlp}}(\theta_Q z_t;W_t). ]

The paper wraps this in a Dual-State design:

MemoryUpdated byPurpose
Long-Term TTT Memoryreal observations and executed actionsanchors true physical history
Working TTT Memoryforked copy plus predicted future featuresconditions short-term generation

The long-term memory update is:

[ W^{long}t = W^{long}{t-1} - \eta\nabla_W\ell_{\mathrm{self}}(W^{long}_{t-1};h_t). ]

During generation, CLWM forks:

[ W^{work}_t\leftarrow W^{long}_t. ]

The working memory stays frozen during continuous ODE integration, then updates once the predicted future feature (\hat{f}_{t+1}) is produced:

[ W^{work\prime}t \leftarrow W^{work}_t - \eta\nabla_W\ell{\mathrm{self}}(W^{work}t;\hat{f}{t+1}). ]

This separation is the paper’s cleanest systems idea. Real observations update the durable memory; imagined future features update a temporary fork. The model can use predicted context for action generation while keeping physical history anchored to measured data.

Speculative Asynchronous Inference

Even with constant memory, a normal robot loop is sequential:

  1. execute the current action;
  2. wait for the next observation;
  3. run denoising to predict the next future state and action;
  4. execute again.

CLWM uses Speculative Asynchronous Inference (SAI) to overlap neural computation with robot motion. While the robot executes (a_{t-1}), the true next observation (o_t) is unavailable. CLWM already predicted (\hat{f}_t), so it treats that feature as a surrogate observation and starts partial denoising in the background:

[ s=0\rightarrow s_{\mathrm{mid}}. ]

When the real observation arrives, DINOv3 extracts (f_t), the Long-Term TTT Memory is calibrated with ground truth, and the ODE solver only finishes the remaining denoising interval:

[ s_{\mathrm{mid}}\rightarrow 1. ]

The paper reports that this cuts blocking latency by about 50% compared with a sequential autoregressive pipeline. The history augmentation from training is what makes the speculative phase plausible: the model has already learned to generate stable vector fields under noisy or partially predicted histories.

EmbodiChain and Online Data Streaming

The other half of the paper is the data engine. CLWM pretraining uses aggregated open-source robot manipulation datasets, mainly RoboMind, Agibot World Beta, and InternData-A1. For post-training, the paper says it avoids manually collected real-world or downstream demonstrations and relies on EmbodiChain to generate physics-grounded simulation data.

EmbodiChain has three roles:

ComponentWhat it adds
Generative simulationcreates assets, scenes, layouts, physical metadata, and simulation-ready USD assets
Domain expansionexpands trajectories through reachability-aware sampling, recovery data, visual augmentation, and physics-grounded variation
Online Data Streamingstreams fresh synthetic trajectories into training through a lock-free shared-memory pipeline

The training principle is called the Efficiency Law of Embodied Intelligence. The paper frames useful scaling through experience throughput (E), the volume of unique state-action pairs consumed per training iteration. For fixed compute (C) and parameters (P), performance improves when fresh experience throughput exceeds a critical threshold:

[ E>\tau(C,P). ]

In practice, this means the optimizer should see continuously refreshed, physically valid interactions. A static dataset of the same nominal size can still overfit because each trajectory is replayed too many times.

Training Setup

The reported implementation is substantial:

DetailValue
Visual encoderDINOv3 base, frozen
Generative backboneMoT initialized from Wan2.2-5B
Patch size(P=16)
Action chunk size(\tau=16)
Dual-arm action size30 continuous dimensions
Pretraining optimizerAdamW
Pretraining learning rate(1\times10^{-4})
Global batch size128
Pretraining durationabout 20 epochs
Compute64 NVIDIA H100 GPUs for about 20 days
RoboTwin fine-tuning25,000 synthetic trajectories, 40k iterations, (1\times10^{-5}) learning rate

Results

On RoboTwin, CLWM is compared against (\pi0.5), X-VLA, Motus, and LingBot-VA. The average success rates are:

MethodAverage success
(\pi0.5)76.76%
X-VLA72.84%
Motus87.02%
LingBot-VA91.55%
CLWM94.00%

The gain is most meaningful on tasks that require multi-step manipulation, dual-arm coordination, and robustness to object or layout variation. CLWM loses a few individual rows, while reaching the strongest table average.

The efficiency experiments support the architectural claims:

ClaimEvidence reported
Dual-State TTT Memory gives constant memoryflat (O(1)) peak GPU memory over a 2,000-step episode
SAI reduces control blocking timeabout 50% lower blocking latency

The EmbodiChain ablation is also clear. On three representative tasks, adding domain expansion modules improves both in-distribution and out-of-distribution success:

ConfigurationID successOOD success
Spatial randomization only64%25%
+ Visual augmentation75%42%
+ Physics-grounded generation81%56%
+ Reachability-aware sampling95%82%

For Online Data Streaming, lower replay bounds mean fresher data. The reported success rises as each trajectory is reused fewer times:

Training configurationHanging MugTurn SwitchStack Bowls
Static baseline, 1,500 demos62%85%88%
ODS sample 21360%84%85%
ODS sample 5092%92%96%
ODS sample 1096%98%98%

This supports the paper’s scaling argument: data freshness and physical diversity matter as much as raw demonstration count.

Real-Robot Evaluation

The real-world platform is Agilex CobotMagic. The paper evaluates four bimanual everyday manipulation tasks:

MethodWater PouringTable RearrangementHand-Over and PlacePan Open and Place
(\pi0)25%20%20%5%
GR00T N1.535%20%15%5%
Sim2Real-VLA80%80%40%35%
CLWM95%90%80%65%

The comparison is especially pointed because CLWM and Sim2Real-VLA are trained with simulation data from the EmbodiChain pipeline, while (\pi0) and GR00T N1.5 are finetuned with 50 real-world expert demonstrations per task. The paper’s claim is zero-shot sim-to-real transfer from simulation-only training.

Strengths and Caveats

The main strength is that CLWM attacks representation, memory, latency, and data generation as one system. DINOv3 latent targets reduce low-level visual burden; TTT memory gives long-horizon context without a growing cache; SAI improves the robot loop; EmbodiChain supplies diverse trajectories for sim-to-real training.

The caveats are worth keeping visible. Many claims depend on a large integrated stack: Wan2.2-5B initialization, 64 H100 training, EmbodiChain data generation, RoboTwin, and CobotMagic deployment. The paper reports strong success rates, but reproducibility will depend on how much of the full training and data pipeline becomes accessible. The TTT memory and SAI claims are compelling, yet the paper gives more system-level performance evidence than fine-grained failure analysis. For dexterous hands specifically, this paper is more about general embodied manipulation and bimanual robot control than a narrow multi-finger hand benchmark.

Takeaway

DexWorldModel is useful to remember as a latent semantic WAM. The reusable recipe is:

  1. encode observations with a robust frozen visual foundation model;
  2. predict future semantic features through conditional flow matching;
  3. decode action chunks from the predicted future;
  4. store long history in TTT weights instead of a KV cache;
  5. overlap speculative denoising with real execution;
  6. train with continuously generated, physics-grounded trajectories.

The paper’s bigger message is that world models for robotics need deployment mechanics. Predicting future images is insufficient if memory grows without bound, the robot waits for every denoising pass, or post-training data stays static. CLWM is a concrete attempt to make a world-action model fast enough, memory-stable enough, and data-fed enough for real manipulation.

DexWorldModel 提出的是一个面向操作任务的 Causal Latent World Model (CLWM)。它最核心的设计,是把 world-action generation 从 pixel reconstruction 转到 semantic latent space:先预测未来的 DINOv3 features,再基于这些未来语义特征解码 action chunks。

我的理解是:这篇论文关注的是让 world-action model 真正可部署。CLWM 同时处理三个瓶颈:pixel-level prediction 会把容量浪费在 texture 和背景细节上,autoregressive history 会让 memory 随 horizon 增长,diffusion-style generation 会拖慢 closed-loop control。论文分别用 DINOv3 latent targets、Dual-State TTT Memory 和 Speculative Asynchronous Inference 来解决。

论文信息

论文标题是 “DexWorldModel: Causal Latent World Modeling towards Automated Learning of Embodied Tasks”,作者是 Yueci Deng, Guiliang Liu, Kui Jia,机构为 DexForce AI。arXiv 页面是 arXiv:2604.16484,提交日期是 2026 年 4 月 13 日

论文还把 EmbodiChain 作为 CLWM post-training 阶段的数据引擎。文中引用的平台是 github.com/DexForce/EmbodiChain

核心问题

World Action Models (WAMs) 在 VLA policy 的基础上加入未来世界状态生成。一个常见形式是:

[ \hat{o}{t+1}\sim p\theta(\cdot\mid o_{\le t},a_{<t},l), ]

[ a_t\sim g_\psi(\cdot\mid o_{\le t},a_{<t},\hat{o}_{t+1},l). ]

这个形式给 policy 增加了显式 future-state interface。代价也很重:如果 (\hat{o}_{t+1}) 位于 pixel space 或低层 VAE latent space,模型会花大量容量建模 lighting、texture 和 background;如果所有历史都通过 Transformer KV cache 保存,memory 会按 (O(T)) 增长;如果每个 action 都串行等待 sensing、完整 denoising 和 execution,机器人每个 control chunk 都会付出较高 latency。

DexWorldModel 的判断是:manipulation world model 应该预测对 action 真正有用的未来部分,也就是 interaction semantics

CLWM 架构

CLWM 在 Mixture of Transformers (MoT) 设计下包含两个耦合的生成模块:

模块目标作用
Latent Video Modelfuture DINOv3 feature (f_{t+1})预测 semantic world evolution
Action Modelaction chunk (a_t)从预测未来语义中解码控制

视觉特征由 frozen DINOv3 提取:

[ f_t=\Phi_{\mathrm{DINO}}(o_t)\in\mathbb{R}^{C\times H’\times W’}. ]

论文使用 patch size (P=16)。两个 generator 共享一个从 Wan2.2-5B 初始化的 core Transformer,同时保留各自的 input/output projections 和 flow-time embeddings:

[ \phi_{\mathrm{vid}}=\phi^{out}{\mathrm{vid}}\circ\phi{\mathrm{share}}\circ\phi^{in}{\mathrm{vid}}, \quad \phi{\mathrm{act}}=\phi^{out}{\mathrm{act}}\circ\phi{\mathrm{share}}\circ\phi^{in}_{\mathrm{act}}. ]

生成过程是 autoregressive 和 causal 的。第一步,Latent Video Model 通过 conditional flow matching 预测下一时刻语义特征:

[ \mathcal{L}{\mathrm{video}} = \mathbb{E}\left[ \left\lVert v{\phi_{\mathrm{vid}}}(f^{(s)}{t+1},s\mid h{\le t},l) - \dot{f}^{(s)}_{t+1} \right\rVert^2 \right]. ]

第二步,Action Model 预测 action chunk:

[ a_t={a_{t,1},a_{t,2},\ldots,a_{t,\tau}}, ]

实验中 (\tau=16)。dual-arm control 的 action vector 很紧凑:每只手臂包含 7-DoF end-effector pose、7 个 joint positions 和 1 个 gripper state,所以总维度是 ((7+7+1)\times 2=30)。

action loss 同样是 flow-matching objective,条件包括历史、语言和预测出的未来 feature:

[ \mathcal{L}{\mathrm{action}} = \mathbb{E}\left[ \left\lVert v{\phi_{\mathrm{act}}}(a^{(s)}t,s\mid \tilde{h}{\le t},l,\tilde{f}_{t+1}) - \dot{a}^{(s)}_t \right\rVert^2 \right]. ]

一个小但关键的细节是 history augmentation。训练时,模型以 (p=0.5) 的概率向 historical latent features 注入 Gaussian noise:

[ \tilde{f}{\le t}=(1-s{\mathrm{aug}})\epsilon+s_{\mathrm{aug}}f_{\le t}, \quad s_{\mathrm{aug}}\in[0.5,1]. ]

这会训练 action model 容忍有误差的 predicted histories。后面的 SAI 会在真实 observation 到达前,用 speculative future features 提前启动推理,因此这个训练技巧很重要。

Dual-State TTT Memory

标准 autoregressive world models 通过 KV cache 保存历史。对长程机器人交互来说,这会带来持续增长的 memory 和 latency:

[ \text{KV cache memory}\sim O(T). ]

CLWM 用 Test-Time Training (TTT) Memory layer 替换 cache。模型把历史压缩进动态更新的 layer weights,避免显式保存所有历史 token。TTT-MLP 通过一个 self-supervised reconstruction objective 训练:

[ \ell_{\mathrm{self}}(W;z_t) = \lVert f(\theta_K z_t;W)-\theta_V z_t\rVert^2. ]

inner-loop weights 更新到 (W_t) 后,通过 query projection 取出 hidden state:

[ l_t=f_{\mathrm{TTTmlp}}(\theta_Q z_t;W_t). ]

论文把它封装成 Dual-State 设计:

Memory更新来源作用
Long-Term TTT Memoryreal observations 和 executed actions锚定真实物理历史
Working TTT Memoryforked copy 加 predicted future features为短程生成提供条件

Long-term memory 的更新是:

[ W^{long}t = W^{long}{t-1} - \eta\nabla_W\ell_{\mathrm{self}}(W^{long}_{t-1};h_t). ]

生成阶段,CLWM 先 fork:

[ W^{work}_t\leftarrow W^{long}_t. ]

working memory 在连续 ODE integration 期间保持冻结;当预测未来特征 (\hat{f}_{t+1}) 产生后,它再更新一次:

[ W^{work\prime}t \leftarrow W^{work}_t - \eta\nabla_W\ell{\mathrm{self}}(W^{work}t;\hat{f}{t+1}). ]

这个分离是论文里很干净的系统设计。真实 observation 更新 durable memory;想象出来的 future feature 只更新 temporary fork。模型可以使用 predicted context 来生成 action,同时避免把真实物理历史污染掉。

Speculative Asynchronous Inference

即使 memory 已经是 constant,一个普通机器人 loop 仍然是串行的:

  1. 执行当前 action;
  2. 等待下一个 observation;
  3. 运行 denoising,预测下一步 future state 和 action;
  4. 再执行。

CLWM 使用 Speculative Asynchronous Inference (SAI) 把 neural computation 和 robot motion 重叠起来。当机器人正在执行 (a_{t-1}) 时,真实的下一帧 observation (o_t) 还不可见。CLWM 已经预测过 (\hat{f}_t),于是把这个 feature 当作 surrogate observation,在后台提前做一段 partial denoising:

[ s=0\rightarrow s_{\mathrm{mid}}. ]

真实 observation 到达后,DINOv3 提取 (f_t),Long-Term TTT Memory 用 ground truth 校准,ODE solver 只需要完成剩余 denoising:

[ s_{\mathrm{mid}}\rightarrow 1. ]

论文报告,这使 blocking latency 相比串行 autoregressive pipeline 降低约 50%。前面的 history augmentation 是 SAI 能工作的训练基础:模型已经被训练过在 noisy 或 partially predicted histories 下生成稳定 vector fields。

EmbodiChain 和 Online Data Streaming

CLWM pretraining 使用聚合的开源 robot manipulation datasets,主要包括 RoboMindAgibot World BetaInternData-A1。post-training 阶段,论文表示绕开人工采集的 real-world 或 downstream demonstrations,使用 EmbodiChain 生成 physics-grounded simulation data。

EmbodiChain 有三层作用:

Component提供什么
Generative simulation生成 assets、scenes、layouts、physical metadata 和 simulation-ready USD assets
Domain expansion通过 reachability-aware sampling、recovery data、visual augmentation 和 physics-grounded variation 扩展轨迹
Online Data Streaming通过 lock-free shared-memory pipeline 把新合成轨迹流式送入训练

论文把训练原则称为 Efficiency Law of Embodied Intelligence。它用 experience throughput (E) 来描述每次训练迭代消费的 unique state-action pairs 数量。在固定 compute (C) 和参数量 (P) 下,当 fresh experience throughput 超过某个阈值时,性能会更有效地提升:

[ E>\tau(C,P). ]

落到实践上,就是 optimizer 应该持续看到刷新过的、物理有效的 interactions。一个名义上同样大小的 static dataset,如果每条 trajectory 被反复 replay,也容易过拟合。

训练设置

论文报告的实现规模比较大:

细节数值
Visual encoderDINOv3 base, frozen
Generative backboneMoT initialized from Wan2.2-5B
Patch size(P=16)
Action chunk size(\tau=16)
Dual-arm action size30 continuous dimensions
Pretraining optimizerAdamW
Pretraining learning rate(1\times10^{-4})
Global batch size128
Pretraining durationabout 20 epochs
Compute64 NVIDIA H100 GPUs, about 20 days
RoboTwin fine-tuning25,000 synthetic trajectories, 40k iterations, (1\times10^{-5}) learning rate

实验结果

RoboTwin 上,CLWM 和 (\pi0.5)、X-VLA、Motus、LingBot-VA 对比。平均成功率如下:

MethodAverage success
(\pi0.5)76.76%
X-VLA72.84%
Motus87.02%
LingBot-VA91.55%
CLWM94.00%

这个提升在 multi-step manipulation、dual-arm coordination 和 object/layout variation 相关任务上更有意义。CLWM 并没有每一行都赢,但整体平均最好。

efficiency 实验支持了架构主张:

Claim论文报告的证据
Dual-State TTT Memory gives constant memory2,000-step episode 中 peak GPU memory 保持 flat (O(1))
SAI reduces control blocking timeblocking latency 约降低 50%

EmbodiChain ablation 也比较清晰。在三个代表性任务上,逐步加入 domain expansion modules 后,ID 和 OOD success 都提升:

ConfigurationID successOOD success
Spatial randomization only64%25%
+ Visual augmentation75%42%
+ Physics-grounded generation81%56%
+ Reachability-aware sampling95%82%

对 Online Data Streaming 来说,replay bound 越低,说明数据越新鲜。论文报告,每条 trajectory 被复用越少,成功率越高:

Training configurationHanging MugTurn SwitchStack Bowls
Static baseline, 1,500 demos62%85%88%
ODS sample 21360%84%85%
ODS sample 5092%92%96%
ODS sample 1096%98%98%

这支持了论文的 scaling argument:data freshness 和 physical diversity 与 raw demonstration count 一样关键。

真实机器人实验

真实平台是 Agilex CobotMagic。论文评估了四个双臂日常操作任务:

MethodWater PouringTable RearrangementHand-Over and PlacePan Open and Place
(\pi0)25%20%20%5%
GR00T N1.535%20%15%5%
Sim2Real-VLA80%80%40%35%
CLWM95%90%80%65%

这个对比点比较强:CLWM 和 Sim2Real-VLA 使用 EmbodiChain pipeline 产生的 simulation data;(\pi0) 和 GR00T N1.5 则使用每个任务 50 条 real-world expert demonstrations 做 finetuning。论文主张的是 simulation-only training 后的 zero-shot sim-to-real transfer。

优点和注意点

CLWM 的主要优点,是把 representation、memory、latency 和 data generation 当成一个系统一起处理。DINOv3 latent targets 降低低层视觉负担;TTT memory 避免长程上下文导致 cache 增长;SAI 改善机器人执行循环;EmbodiChain 为 sim-to-real training 提供多样轨迹。

需要注意的是,很多结果依赖一个大型集成栈:Wan2.2-5B initialization、64 H100 训练、EmbodiChain 数据生成、RoboTwin benchmark 和 CobotMagic deployment。论文报告了很强的 success rates,但可复现性取决于完整训练和数据 pipeline 的开放程度。TTT memory 和 SAI 的方向很有吸引力,不过论文给出的主要是 system-level performance evidence,细粒度 failure analysis 还不多。对于 dexterous hands 来说,这篇更偏 general embodied manipulation 和 bimanual robot control,并非专门的多指灵巧手 benchmark。

Takeaway

DexWorldModel 可以记成一个 latent semantic WAM。可复用的 recipe 是:

  1. 用 robust frozen visual foundation model 编码 observation;
  2. 通过 conditional flow matching 预测 future semantic features;
  3. 从 predicted future 中解码 action chunks;
  4. 用 TTT weights 保存 long history,替代 KV cache;
  5. 把 speculative denoising 和真实执行时间重叠;
  6. 用连续生成的 physics-grounded trajectories 训练。

这篇论文更大的信息是:robotics world model 需要 deployment mechanics。只会预测 future images 还不够;如果 memory 无界增长、机器人每次都等待完整 denoising、post-training data 保持静态,world model 很难变成可靠控制器。CLWM 是一次把 world-action model 做到 faster、memory-stable、data-fed 的系统尝试。