Paper: 2603.23149 Authors: Massimiliano Pappa, Luca Romani, Valentino Sacco, Alessio Palma, Stéphane Lathuilière, Fabio Galasso, Xavier Alameda-Pineda, Indro Spinelli Categories: cs.AI

Abstract

Deploying safety-critical agents requires anticipating the consequences of actions before execution. While world models offer proactive foresight, current visual simulation approaches incur prohibitive latencies — often exceeding several seconds per step. DILLO (DIstiLLed Language-ActiOn World Model) challenges the assumption that visual processing is necessary for failure prevention. By showing that a policy’s latent state combined with planned actions already encodes sufficient information to anticipate outcomes, DILLO shifts the paradigm from “simulate-then-act” to “describe-then-act.” Trained via cross-modal distillation from a VLM teacher, DILLO achieves 14x speedup over baselines while improving episode success rate by up to 15 percentage points.

Key Contributions

  • Latent Sufficiency Hypothesis: Demonstrates that a policy’s latent state is a sufficient statistic for predicting failure-critical outcomes, making visual simulation redundant
  • Cross-modal distillation: VLM teacher annotates offline trajectories; LLM student learns to predict semantic outcomes from latent states alone
  • 14x speedup: Text-only inference path bypasses heavy visual generation entirely
  • Dual output: Natural language behavior preview + binary positive/negative verdict for autonomous rejection sampling
  • Consumer hardware compatible: Runs on consumer GPUs unlike visual world models requiring enterprise hardware

The Foresight-Latency Dilemma

Current safety-critical agent approaches face a stark tradeoff:

ApproachProsCons
Post-hoc analysisFast, cheapCannot prevent failures — only diagnoses after
Visual simulationCan anticipate risks~4 seconds per decision on RTX A6000 48GB
DILLOAnticipates risksFast enough for real-time control

Visual world models generate high-dimensional future states (images/videos), but this is overkill for the binary question: “Will this action succeed or fail?”

The Latent Sufficiency Hypothesis

A policy’s internal latent representation is explicitly trained to retain task-critical features: object geometry, relative distances, contact dynamics. If this representation already contains the information needed to predict whether an action will succeed, why pay the cost of re-rendering pixels?

DILLO empirically validates this hypothesis: latent states + action plans → accurate outcome predictions, no pixels needed.

Architecture

Training (Offline)

  1. VLM Teacher (privileged): Observes simulation environment, annotates trajectories with:
    • Natural language descriptions of what happens
    • Binary success/failure verdicts
  2. LLM Student (DILLO): Learns to predict these annotations from:
    • Policy’s compact latent state (z_t)
    • Candidate action chunk (a_{t:t+k})

Inference (Online)

DILLO generates two outputs per candidate action:

  1. Behavior preview (natural language): “The gripper goes left and forward, starting to approach the ball”
  2. Binary verdict: Positive (advances task) or Negative (causes stagnation/failure)

Negative actions are rejected via rejection sampling; descriptions provide interpretability for human supervisors.

Results

EnvironmentSuccess Rate Improvement
MetaWorldUp to +15 pp
LIBERO+9.3 pp average
Speedup14x over visual baselines

Takeaways

  • Visual simulation is redundant for failure prevention — policy latent states contain sufficient information
  • Cross-modal distillation (VLM → LLM) creates a fast text-only inference path from expensive visual annotations
  • The “describe-then-act” paradigm provides both autonomous safety (rejection sampling) and human interpretability (natural language previews)
  • Makes proactive agent steering feasible on consumer hardware, unlike visual world models requiring enterprise GPUs

论文: 2603.23149 作者: Massimiliano Pappa, Luca Romani, Valentino Sacco, Alessio Palma, Stéphane Lathuilière, Fabio Galasso, Xavier Alameda-Pineda, Indro Spinelli 分类: cs.AI

摘要

部署安全关键智能体需要在执行前预判动作后果。虽然世界模型提供了前瞻性预测,但当前的视觉模拟方法产生了过高的延迟——通常每步超过几秒。DILLO(蒸馏语言-动作世界模型)挑战了失败预防需要视觉处理的假设。通过证明策略的潜在状态结合计划动作已编码了足够的信息来预测结果,DILLO将范式从”模拟后行动”转向”描述后行动”。通过VLM教师的跨模态蒸馏训练,DILLO比基线加速14倍,同时将任务成功率提升最高15个百分点。

主要贡献

  • 潜在充分性假设:证明策略的潜在状态是预测失败关键结果的充分统计量,使视觉模拟变得多余
  • 跨模态蒸馏:VLM教师标注离线轨迹;LLM学生仅从潜在状态学习预测语义结果
  • 14倍加速:纯文本推理路径完全绕过重型视觉生成
  • 双重输出:自然语言行为预览 + 二值正/负判定,用于自主拒绝采样
  • 消费级硬件兼容:在消费级GPU上运行,不像视觉世界模型需要企业级硬件

前瞻-延迟两难

当前安全关键智能体方法面临严峻权衡:

方法优点缺点
事后分析快速、低成本无法预防失败——仅事后诊断
视觉模拟可预判风险RTX A6000 48GB上每决策约4秒
DILLO可预判风险足够快用于实时控制

潜在充分性假设

策略的内部潜在表示经过训练以保留任务关键特征:物体几何形状、相对距离、接触动力学。如果这种表示已包含预测动作是否成功所需的信息,为什么要付出重新渲染像素的代价?

DILLO经验性地验证了此假设:潜在状态 + 动作计划 → 准确的结果预测,无需像素。

架构

训练(离线)

  1. VLM教师(特权):观察模拟环境,用以下内容标注轨迹:自然语言描述 + 二值成功/失败判定
  2. LLM学生(DILLO):从策略的紧凑潜在状态和候选动作块学习预测这些标注

推理(在线)

DILLO为每个候选动作生成两个输出:

  1. 行为预览(自然语言):“夹持器向左前方移动,开始接近球”
  2. 二值判定:正面(推进任务)或负面(导致停滞/失败)

负面动作通过拒绝采样被拒绝;描述为人类监督者提供可解释性。

实验结果

环境成功率提升
MetaWorld最高+15个百分点
LIBERO平均+9.3个百分点
加速比视觉基线快14倍

要点总结

  • 视觉模拟对失败预防是多余的——策略潜在状态包含充分信息
  • 跨模态蒸馏(VLM → LLM)从昂贵的视觉标注创建快速纯文本推理路径
  • “先描述再行动”范式同时提供自主安全性(拒绝采样)和人类可解释性(自然语言预览)
  • 使主动智能体引导在消费级硬件上可行