proomt

Search

Search posts, papers, and topics

All posts

Hugging Face Daily PapersTrung Dao, Sankalp Yamsani, Jaden Park1 min readpaperadvanced

Think Like a World Model, Act Like a VLA: Distilling World-Model Representations into Compact Robot Policies

Summary

Distill frozen world‑model features into a Vision‑Language‑Action policy via a single alignment loss; no teacher at train time, no extra runtime cost. 0.8 B student runs 32 ms / 1.86 GB on RTX 5090, hits 97.9 % on LIBERO and improves RoboCasa‑GR1 from 48.2 % to 50.5 %, with transfer to real single‑arm and bimanual robots.

  • Add a feature‑alignment term: run a frozen world model on training frames once, cache its internal features, and train the VLA student to match them.
  • The alignment projector is discarded after training; the deployed policy is identical to the baseline VLA, so speed and memory gains come solely from better representations.
  • Runtime: 32 ms per decision, 1.86 GB VRAM on a consumer RTX 5090 (no extra test‑time compute).
  • Performance: 0.8 B parameter student reaches 97.9 % on LIBERO; RoboCasa‑GR1 manipulation improves from 48.2 % to 50.5 %; same gains on real single‑arm and bimanual hardware.

World‑model grounding is usually too expensive for closed‑loop control. This work shows you can inherit the grounding via static feature alignment, keeping inference cheap while still reaping the robustness benefits—directly applicable to any VLA‑style robot policy.

8/10

Related reading

  1. In-Context Robot Learning with VLM Agents

    GPT‑Policy is a framework that lets a large vision‑language model (e.g. GPT‑6 Astra) perform in‑context robot learning: a context compiler extracts visual transitions from demos, the VLM proposes tool actions, and a constrained controller verifies and executes them. Real‑robot experiments show that raw video demos improve success rates even without explicit action labels, and that providing align…

    Hugging Face Daily Papersarxiv.org1 minpaper
  2. HuRo: Robotizing Human Videos for Scalable VLA Pretraining

    The paper introduces a pipeline that converts heterogeneous human videos into robot‑aligned observations and actions, creating the 630K‑episode HuRo dataset. Pretraining vision‑language‑action (VLA) policies on this data boosts real‑world manipulation success from ~51% to ~80% and improves out‑of‑distribution robustness.

    Hugging Face Daily Papersarxiv.org1 minpaper
  3. Transferring the Intelligence of VLMs to Robotic Control

    RoboDawn lets a vision‑language model (VLM) drive a robot via a tiny discrete command set (translate/rotate/gripper). Using a few in‑context demos, the VLM learns the interface and task strategy, then runs closed‑loop: observe image → reason → act → re‑observe. On the RoboTwin 2.0 C2R benchmark RoboDawn hits 53.2 % success zero‑shot, 73.6 % with one demo (vs. 46 % baseline). On RoboDojo it goes f…

    Hugging Face Daily Papersarxiv.org1 minpaper
  4. From Pretraining to Proficiency: Real-World Subtask RL for Long-Horizon Manipulation with Minimal Human Intervention

    The paper presents PARTS, a framework that augments a frozen pretrained robot policy with RL‑learned residuals on selected bottleneck subtasks, using local success rewards and minimal human resets. In real‑world bimanual and single‑arm tasks, PARTS more than doubles success rates with only minutes of robot rollouts, outperforming prior fine‑tuning methods.

    Hugging Face Daily Papersarxiv.org1 minpaper
  5. ActionPiece: Rethinking Action Tokenization for Autoregressive Vision-Language-Action Models

    Action tokenizers for autoregressive VLA models often fail to preserve subtle action adjustments, despite good pointwise reconstruction. This paper introduces Physical Rank Consistency (PRC) to measure relational fidelity and ActionPiece, a new tokenizer that uses joint supervision to preserve these physical relationships, significantly improving policy success on robotics benchmarks.

    Hugging Face Daily Papersarxiv.org1 minpaper