VoxPoser: Composable 3D Value Maps for Robotic Manipulation with Language Models

VoxPoser: Composable 3D Value Maps for Robotic Manipulation with Language Models

Featured

Wenlong Huang, Chen Wang, Ruohan Zhang, Yunzhu Li, Jiajun Wu, Li Fei-Fei · Stanford University · 2023

Framework

PyTorch

License

MIT

Stars

803

Summary

VoxPoser uses LLMs to compose 3D value maps from free-form language instructions, enabling zero-shot closed-loop manipulation planning with model-based trajectory synthesis over dynamic environments.

Abstract Summary

VoxPoser tackles the long-standing bottleneck in LLM-driven robotics: while language models can reason and plan, most existing systems still rely on hard-coded motion primitives to execute physical actions. The authors propose a framework where an LLM grounds free-form language instructions directly into the robot’s observation space by composing *3D value maps*. These maps encode spatial constraints and affordances inferred from the language prompt, effectively acting as a cost landscape that guides trajectory optimization without any pre-programmed skills. The key insight is to leverage the LLM’s code-writing capability to call a vision-language model (VLM), generating programs that produce composable 3D value functions. For example, given the instruction "place the apple inside the bowl on the left," the LLM generates code that queries object segmentation, computes spatial relationships, and assembles an attraction field toward the target region and a repulsion field around obstacles. The resulting dense value map is then passed to an LQR-style model-based planner that synthesizes a closed-loop sequence of 6-DoF end-effector waypoints. Because the maps are recomputed online, the policy is robust to dynamic perturbations such as objects moving mid-trajectory. Beyond zero-shot synthesis, VoxPoser also demonstrates efficient online adaptation for contact-rich interactions. In scenes where precise force profiles matter—such as opening a drawer or inserting a peg—the authors learn a local dynamics model from online rollouts, which refines the value map and improves success rates with only a handful of real-world interactions. This hybrid approach marries the high-level semantic reasoning of LLMs with low-level physics modeling, yielding a system that handles both coarse reaching and fine-grained contact without switching controllers. Evaluation spans both simulated environments and real robotic hardware. The system performs over 30 everyday manipulation tasks specified in free-form language, often succeeding from entirely unseen initial configurations. Importantly, VoxPoser operates zero-shot: no task-specific pre-training or demonstration data is required. The authors release code, pretrained perception modules, and a simulated benchmark, providing a valuable resource for researchers exploring the intersection of foundation models and embodied control.

Key Points

  • LLM composes 3D value maps from open-vocabulary language instructions via VLM-generated code.
  • Model-based LQR planner synthesizes closed-loop 6-DoF trajectories from value maps in real time.
  • Zero-shot manipulation across a large variety of tasks without task-specific demonstrations.
  • Online dynamics learning improves contact-rich performance with minimal real-world rollouts.
  • Demonstrated on real robot hardware with robustness to dynamic perturbations.

Additional Notes

Setup Tips

  • Requires an OpenAI API key or local LLM endpoint for the planning module.
  • The perception stack relies on foundation vision models; ensure CUDA compatibility with latest PyTorch.
  • Real-robot deployment needs a calibrated robot arm interface (tested on Franka and UR5).
  • SayCan (Ahn et al., 2022)
  • Code as Policies (Liang et al., 2022)
  • Inner Monologue (Huang et al., 2022)
Share

Related Papers

AHEAD: Anticipatory Hand-Driven Teleoperation via Human Intent Prediction

AHEAD: Anticipatory Hand-Driven Teleoperation via Human Intent Prediction

Seok Joon Kim, Junho Lee, Federica Spinola et al. · arXiv preprint · Jul 2026

Direct hand-driven teleoperation maps an operator's hand motion to robot end-effector commands at every frame, enabling precise control, but it requires constant monitoring and correction during approach, grasp, and placement, which can be slow and fatiguing. For repetitive pick-and-place tasks, ...

manipulation reinforcement-learning planning control learning-from-demonstration
PDF Intermediate
No code repo Jul 2026
Deformable Object Manipulation under Partial Observability via Real-Time Full-Shape Estimation

Deformable Object Manipulation under Partial Observability via Real-Time Full-Shape Estimation

Kosar Behnia, Ville Kyrki, Gokhan Alcan · arXiv preprint · Sep 2026

Manipulating deformable objects (DOs) is challenging due to their high-dimensional state space, underactuated dynamics, and partial observability. In this paper, we propose cRVAE, a lightweight conditional recurrent variational autoencoder that estimates the full DO state from only partial corner...

manipulation planning control
PDF Intermediate
No code repo Sep 2026
Deliberate Practice: Learning Robot Skills under a Budget

Deliberate Practice: Learning Robot Skills under a Budget

Shivam Vats, Sudarshan Harithas, Mete Tuluhan Akbulut et al. · arXiv preprint · Aug 2026

We consider the problem of autonomously learning robot skills under a limited practice budget for sequential tasks. We propose an active skill learning algorithm, \emph{Deliberate Practice (DP)}, that computes a provably \emph{budget-optimal} allocation---practicing skills that maximize expected ...

manipulation reinforcement-learning planning
PDF Intermediate
No code repo Aug 2026
EgoForce: Forearm-Guided Camera-Space 3D Hand Pose from a Monocular Egocentric Camera

EgoForce: Forearm-Guided Camera-Space 3D Hand Pose from a Monocular Egocentric Camera

Christen Millerdurai, Shaoxiang Wang, Yaxu Xie et al. · SIGGRAPH 2026 · May 2026

Reconstructing the absolute 3D pose and shape of the hands from the user's viewpoint using a single head-mounted camera is crucial for practical egocentric interaction in AR/VR, telepresence, and hand-centric manipulation tasks, where sensing must...

manipulation manipulation simulation
Code PDF Intermediate
Code ★ 0 May 2026