Evaluates a model's ability to reason about embodied interactions, including spatial understanding, physical commonsense, task planning, and state estimation from robot vision and text inputs. Use when the user wants to benchmark on EO-Bench, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill eo-bench-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Eo Bench Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-eo-bench-eval)More formats (shields.io, HTML) on the badges page.
---
name: eo-bench-eval
description: Evaluates a model's ability to reason about embodied interactions, including spatial understanding, physical commonsense, task planning, and state estimation from robot vision and text inputs. Use when the user wants to benchmark on EO-Bench, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2508.21112
bibtex_key: qu2025eo1
confidence: high
---
# eo-bench-eval
> EO-1: Interleaved Vision-Text-Action Pretraining for General Robot Control — Qu et al. (2025) (arXiv:2508.21112, 2025)
## What this evaluates
Evaluates a model's ability to reason about embodied interactions, including spatial understanding, physical commonsense, task planning, and state estimation from robot vision and text inputs.
## Datasets
- **EO-Bench** — total 648; splits: test (648)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Standard question-answering accuracy. Predicted text is compared against the ground-truth answer using exact match or normalized string matching for free-form QA, and exact match for multiple-choice options.
## Input / output format
**Input**: Robot manipulation video frames or image tokens paired with natural language questions covering spatial, physical, and task reasoning.
**Output**: Natural language text answers (free-form or multiple-choice selections).
## Scoring recipe
```python
def compute_accuracy(predictions, gold_answers):
correct = 0
for pred, gold in zip(predictions, gold_answers):
pred_norm = normalize(pred)
gold_norm = normalize(gold)
if pred_norm == gold_norm:
correct += 1
return correct / len(predictions)
```
## Common pitfalls
- Existing benchmarks often conflate multiple reasoning aspects (e.g., mixing spatial trajectories with extensive commonsense), leading to ambiguous evaluations. EO-Bench explicitly disentangles these to attribute performance accurately.
- The benchmark relies on manually labeled QA pairs from robot control videos, so evaluation quality is tightly coupled to annotation consistency and template design.
## Evidence (verbatim from paper)
> Embodied Onevision Benchmark ( EO-Bench) aims to construct a comprehensive and balanced evaluation suite for open-world embodied reasoning, covering both challenging and accessible tasks. ... In total, the benchmark comprises 648 QA pairs manually labeled on diverse robot control data, distributed across categories as follows: 370 for spatial understanding, 140 for task reasoning, 84 for physical dynamic reasoning, and 48 for physical commonsense. Together, these four categories provide a structured yet broad evaluation of a model’s ability to reason about space, physics, tasks, and states in embodied intelligence.
## Citation
```bibtex
@misc{qu2025eo1,
title={EO-1: Interleaved Vision-Text-Action Pretraining for General Robot Control},
author={Qu et al. (2025)},
year={2025},
note={arXiv:2508.21112}
}
```
- arXiv: 2508.21112
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!