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

Hugging Face

Predicts eight future [x,y,yaw] waypoints for language-conditioned embodied person-following using fused DINOv3 and SigLIP visual features; trained with quality-driven, DAgger-style self-evolving data and optimized for on-device inference (~5+ FPS, ~180 ms).

A vision-language-action foundation model trained on 100k+ hours of real-world robot manipulation trajectories to follow natural-language instructions and adapt to downstream tasks with minimal fine-tuning. Uses a two-stage (pre-/post-) training recipe and a scalable auto-labeling pipeline; shows clear scaling benefits and state-of-the-art sim-to-real transfer on standard benchmarks.

Analyzes adversarial weaknesses of World-Action Models (WAMs) via BadWAM, a framework that crafts visual perturbations to decouple a model’s imagined future from its executed actions. Introduces two attack modes—action-only (disruptive) and imagination-preserving (stealthy)—and shows large drops in closed-loop task success (e.g., 96.5%→43.1%).