Evaluates a robot's ability to generalize visuomotor planning to unseen visual signals, referring expressions, and spatial relationships during cube-picking and placing tasks. It probes semantic generalization and robustness to distribution shifts in embodied instruction following. Use when the user wants to benchmark on WISER Benchmark, or asks about evaluating this task. Reports Success.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill wiser-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Wiser Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-wiser-eval)More formats (shields.io, HTML) on the badges page.
---
name: wiser-eval
description: Evaluates a robot's ability to generalize visuomotor planning to unseen visual signals, referring expressions, and spatial relationships during cube-picking and placing tasks. It probes semantic generalization and robustness to distribution shifts in embodied instruction following. Use when the user wants to benchmark on WISER Benchmark, or asks about evaluating this task. Reports Success.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.11751
bibtex_key: li2026groundedworldmodel
confidence: high
---
# wiser-eval
> Grounded World Model for Semantically Generalizable Planning — Quanyi Li et al. (2026) (arXiv:2604.11751, 2026)
## What this evaluates
Evaluates a robot's ability to generalize visuomotor planning to unseen visual signals, referring expressions, and spatial relationships during cube-picking and placing tasks. It probes semantic generalization and robustness to distribution shifts in embodied instruction following.
## Datasets
- **WISER Benchmark** — total ?; splits: train (-1), test (288); repo https://github.com/QuanyiLi/gwm-wiser
## Metrics
- `Success` **(primary)** — range: [0, 1]
- Fraction of tasks where the robot successfully executes the instructed manipulation (grasping the correct object and placing it at the target location). Computed as successful tasks divided by total tasks.
## Input / output format
**Input**: Natural language task instructions (system prompt + task prompt), current robot observations (images from wrist and other cameras), and robot state.
**Output**: Action sequences or trajectories for robot execution, typically proposed via MPC and scored via cosine similarity to instruction embeddings.
## Scoring recipe
```python
def compute_success(predictions, gold):
correct = 0
for pred, gold_inst in zip(predictions, gold):
if check_grasp_correctness(pred, gold_inst) and check_place_correctness(pred, gold_inst):
correct += 1
return correct / len(gold)
```
## Common pitfalls
- Models often overfit to training sentence structures and lose the ability to understand decomposed instructions.
- Performance is bottlenecked by the scoring model (Qwen3-VL-Embedding); even ground-truth future embeddings do not yield 100% success.
- Delta vs. absolute action spaces do not inherently improve generalizability, contrary to some assumptions.
## Evidence (verbatim from paper)
> The GWM-MPC achieves the best test-scene performance, yielding an 87% success rate across 288 test tasks that feature unseen referring expressions, spatial relationship descriptions, and visual signals.
## Citation
```bibtex
@misc{li2026groundedworldmodel,
title={Grounded World Model for Semantically Generalizable Planning},
author={Quanyi Li et al. (2026)},
year={2026},
note={arXiv:2604.11751}
}
```
- arXiv: 2604.11751

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!