AIAny
Icon for item

MiniCPM-RobotManip

Generates robot manipulation actions from visual observations and text instructions using a 1.5B vision-language-action model. Uses streaming context and visual-token compression to cut per-step compute, runs a unified policy across tasks, and is open-sourced on Hugging Face under Apache-2.0.

Introduction

Most embodied manipulation systems react to a single frame or require large, task-specific policies. This model pushes toward continuous decision-making by keeping up to ~60 frames of visual memory in a highly compressed, streaming context, enabling longer-horizon, multi-task robotic behavior with a single set of weights.

Key Capabilities
  • Unified 1.5B VLA policy: one set of weights is used across diverse downstream manipulation tasks, reported to outperform larger baselines such as π0.5 and Qwen-VLA on representative evaluations, simplifying deployment and maintenance.
  • Streaming context for long-horizon memory: historical observations are ingested continuously so the model retains ~60 frames (about one minute of visual memory) while reducing per-step compute from ~125 TFLOPs to ~3.3 TFLOPs in the authors' measurements — enabling practical multi-frame decision-making.
  • Visual-token compression and latency: inherits a 4× visual-token compression (256→64 tokens) from MiniCPM-V, and with H100 BF16 single-frame inputs reported a model-forward latency of ~120 ms per decision step (excluding autoregressive decoding), faster than a reported 234 ms baseline for π0.5.
  • Off-the-shelf usage: provides a Hugging Face processor/model with example inference code (state vector dim = 80, transformers==5.7.0 recommended) and open-source weights/code under Apache-2.0.
Who it's for and trade-offs

Great fit if you need a single, generalist VLA policy for on-device or near-device robotic manipulation research and prototyping, want explicit multi-frame/streaming context support, and can afford modern GPU acceleration for low-latency runs. The model simplifies multi-task evaluation by avoiding task-specific fine-tuning in many cases.

Look elsewhere if you require extremely small embedded-runtime footprints (the 1.5B model still needs significant compute for real-time without acceleration), have strict real-world safety/verification demands that need task-specific controllers, or need proven production-grade sim-to-real pipelines beyond research benchmarks.

Practical notes
  • Example inference wrapper expects a state dimension of 80 and demonstrates how to feed multiple images + text prompts; an embodiment_id API allows multiple robot embodiments.
  • Performance claims (TFLOPs, latency, benchmark comparisons) are from the model card and assume specific hardware and precision; reproduce measurements on your target hardware before trusting runtime numbers.

Information

Categories

More Items

Learns generalizable World Action Models for robotic manipulation by scaling causal egocentric video pretraining and grounding learned dynamics with heterogeneous robot trajectories. Key features: a three-stage curriculum (video pretraining, video-action mid-training with a unified action representation, and target-robot specialization) and a Slow–Fast dual-system for 30 Hz real-time action prediction.

Converts posed indoor RGB(-D) video into editable, simulation-ready 3D scene graphs by parsing multi-view evidence into per-object bundles, generating complete object assets from that evidence, and placing them with GizmoAct, a VLM policy that refines 9-DoF poses through closed-loop GUI actions.

Proposes VLAct, a representation-centric continued pre-training method for Vision-Language-Action models that preserves VLM priors and enforces cross-embodiment action semantics to turn limited robot trajectories into transferable visual-action representations; shows strong gains and sample efficiency on multiple VLA benchmarks using modest compute.