robometer
/

Robometer-4B / README.md
nielsr's picture
nielsr HF Staff
Add robotics pipeline tag and improve model card
651b0e6 verified
|
Raw
History Blame
2.68 kB
metadata
base_model: Qwen/Qwen3-VL-4B-Instruct
library_name: transformers
license: apache-2.0
pipeline_tag: robotics
tags:
  - reward model
  - robot learning
  - foundation models

Robometer 4B

Project Page | Paper | GitHub

Robometer is a general-purpose vision-language reward model for robotics. It is trained on RBM-1M (a dataset of over one million trajectories) using a Qwen3-VL-4B backbone to predict per-frame progress, per-frame success, and trajectory preferences from rollout videos.

The model combines frame-level progress supervision on expert data with trajectory-comparison preference supervision, allowing it to learn from both successful and failed rollouts and generalize across diverse robot embodiments and tasks.

Given a task instruction and a rollout video (or frame sequence), the model predicts:

  • Per-frame progress: Continuous progress values over time (e.g., 0–1 or binned).
  • Per-frame success: Success probability (or binary) at each timestep.
  • Preference / ranking: Which of two trajectories is better for the task.

Usage

For full setup and configurations, see the GitHub repository.

Option 1 — Run the model locally (loads this checkpoint from Hugging Face):

uv run python scripts/example_inference_local.py \
  --model-path robometer/Robometer-4B \
  --video /path/to/video.mp4 \
  --task "your task description"

Option 2 — Use the evaluation server (start server, then run client):

# Start server
uv run python robometer/evals/eval_server.py \
  --config-path=robometer/configs \
  --config-name=eval_config_server \
  model_path=robometer/Robometer-4B \
  server_url=0.0.0.0 \
  server_port=8000

# Client (no robometer dependency)
uv run python scripts/example_inference.py \
  --eval-server-url http://localhost:8000 \
  --video /path/to/video.mp4 \
  --task "your task description"

Citation

If you use this model, please cite:

@inproceedings{liang2026robometer,
  title     = {Robometer: Scaling General-Purpose Robotic Reward Models via Trajectory Comparisons},
  author    = {Anthony Liang and Yigit Korkmaz and Jiahui Zhang and Minyoung Hwang and Abrar Anwar and Sidhant Kaushik and Aditya Shah and Alex S. Huang and Luke Zettlemoyer and Dieter Fox and Yu Xiang and Anqi Li and Andreea Bobu and Abhishek Gupta and Stephen Tu and Erdem Biyik and Jesse Zhang},
  year      = {2026},
  booktitle = {Robotics: Science and Systems 2026},
}