Views
No views yet
1uv run python scripts/example_inference_local.py \
2 --model-path robometer/Robometer-4B \
3 --video /path/to/video.mp4 \
4 --task "your task description"1# Start server
2uv run python robometer/evals/eval_server.py \
3 --config-path=robometer/configs \
4 --config-name=eval_config_server \
5 model_path=robometer/Robometer-4B \
6 server_url=0.0.0.0 \
7 server_port=8000
8
9# Client (no robometer dependency)
10uv run python scripts/example_inference.py \
11 --eval-server-url http://localhost:8000 \
12 --video /path/to/video.mp4 \
13 --task "your task description"1@article{liang2026robometer,
2 title = {Robometer: Scaling General-Purpose Robotic Reward Models via Trajectory Comparisons},
3 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},
4 year={2026},
5 journal = {arXiv preprint arXiv:2603.02115}
6}