# Task Me Anything Eval

> Evaluates the visual perceptual capabilities of large multimodal language models across object recognition, attribute recognition, spatial and temporal reasoning, and action recognition using programmatically generated image and video question-answering tasks. Use when the user wants to benchmark on Task-Me-Anything, or asks about evaluating this task. Reports accuracy.

- Skill: `qhjqhj00/task-me-anything-eval` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/task-me-anything-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/task-me-anything-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/task-me-anything-eval

---


# task-me-anything-eval

> Task Me Anything — Jieyu Zhang et al. (2024) (arXiv:2406.11775, 2024)

## What this evaluates

Evaluates the visual perceptual capabilities of large multimodal language models across object recognition, attribute recognition, spatial and temporal reasoning, and action recognition using programmatically generated image and video question-answering tasks.

## Datasets

- **Task-Me-Anything** — total ?; splits: (unstated); repo https://github.com/JieyuZ2/TaskMeAnything

## Metrics

- `accuracy` **(primary)** — range: [0, 1]
  - Multiple-choice accuracy: the fraction of instances where the model's predicted option exactly matches the ground truth answer.

## Input / output format

**Input**: An image or video, a natural language question, and a list of multiple-choice options.

**Output**: A single selected option corresponding to the ground truth answer.

## Scoring recipe

```python
def compute_accuracy(predictions, golds):
    correct = sum(1 for pred, gold in zip(predictions, golds) if pred == gold)
    return correct / len(golds)
```

## Common pitfalls

- Results are not static; they depend on the specific task plans sampled or the approximation method (Random, Fitting, Active) used for fine-grained queries.
- Performance varies significantly between synthetic 2D/3D rendered scenes and real-world annotated data (Visual Genome, Action Genome, GQA, AGQA).
- The benchmark supports on-budget approximation, so reported accuracy may be an estimate rather than a full evaluation unless explicitly stated.

## Evidence (verbatim from paper)

> We adopt the common input-output format used in existing benchmarks, *i.e.*, all the task instances in Task-Me-Anything contain an image/video, a question, and multiple options with one ground truth answer. MLMs will be evaluated on these generated task instances and the results will be returned back to the user. Find all the object recognition tasks that both LLaVA-Next-34B and GPT4o perform below 30% accuracy?

## Citation

```bibtex
@misc{zhang2024taskmeanything,
  title={Task Me Anything},
  author={Jieyu Zhang et al. (2024)},
  year={2024},
  note={arXiv:2406.11775}
}
```

- arXiv: 2406.11775

