File size: 3,020 Bytes
c4bc803
7dd3f3c
c4bc803
 
 
 
 
 
 
 
 
7dd3f3c
 
c4bc803
 
 
 
 
 
 
795dc44
 
 
 
 
c4bc803
 
7dd3f3c
c4bc803
7dd3f3c
c4bc803
7dd3f3c
 
 
 
 
 
c4bc803
7dd3f3c
 
 
ed05068
 
7dd3f3c
 
 
c4bc803
 
 
7dd3f3c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c4bc803
7dd3f3c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
pretty_name: WGO-Bench
task_categories:
- robotics
- video-classification
language:
- en
tags:
- temporal-segmentation
- subtask-annotation
- robotics
- robot-learning
- egocentric-video
- droid
- robocoin
- galaxea
- homer
license: cc-by-nc-sa-4.0
size_categories:
- n<1K
configs:
- config_name: default
  data_files:
  - split: train
    path: data/annotations.parquet
---

# WGO-Bench: What's Going On Benchmark

WGO-Bench is a small, manually annotated benchmark for evaluating how well vision-language models can turn robot and egocentric manipulation videos into timestamped subtask annotations.

Each row contains one video episode, a high-level task instruction, and gold subtask segments with start time, end time, and a concise action label. The benchmark is designed for two related tasks:

- **Boundary detection:** predict where one meaningful manipulation subtask ends and the next begins.
- **Subtask labeling:** given a fixed segment, describe the completed manipulation event.

## Dataset Summary

| Metric | Value |
| --- | ---: |
| Episodes | 100 |
| Gold subtask segments | 743 |
| Unique task instructions | 63 |
| Source families | 3 |
| Format | Parquet |
| Video storage | MP4 bytes embedded in each row |

## Sources

| Source | Episodes |
| --- | ---: |
| HomER egocentric videos | 25 |
| RoboInter DROID station-arm videos | 50 |
| RoboCOIN Galaxea R1 Lite head-camera videos | 25 |

## Schema

| Column | Type | Description |
| --- | --- | --- |
| `id` | string | Stable episode identifier. |
| `video` | binary | MP4 video bytes embedded directly in the parquet row. |
| `instruction` | string | High-level task instruction for the episode. |
| `segments` | list | Gold `{start_sec, end_sec, subtask}` annotations. |
| `metadata` | string | JSON metadata with source-specific fields. |

## Quick Start

```python
from datasets import load_dataset

dataset = load_dataset("macrodata/WGO-Bench", split="train")
example = dataset[0]

print(example["instruction"])
print(example["segments"])
```

To use the parquet directly:

```python
import pandas as pd

df = pd.read_parquet("hf://datasets/macrodata/WGO-Bench/data/annotations.parquet")
```

## Annotation Policy

Segments are intended to describe completed manipulation events, not every small pose adjustment. A new segment should generally correspond to a visible state change such as picking up, placing, opening, closing, moving, pouring, wiping, cutting, or transferring an object.

The labels are short action descriptions grounded in what is visible in the clip. They are meant to be useful for downstream policy training, reward modeling, and evaluating automatic subtask annotation pipelines.

## Related Resources

- Blog post: [Segmenting Robot Video into Actionable Subtasks](https://macrodata.co/blog/inferring-robot-subtasks-from-video)
- Refiner example: [Subtask annotations](https://macrodata.co/docs/examples/annotations/subtask-annotations)
- Code: [macrodata-labs/refiner](https://github.com/macrodata-labs/refiner)