hynky commited on
Commit
7dd3f3c
·
verified ·
1 Parent(s): 162b3df

Update WGO-Bench dataset card

Browse files
Files changed (1) hide show
  1. README.md +64 -13
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- pretty_name: WASUP Subtask Annotations v1
3
  task_categories:
4
  - robotics
5
  - video-classification
@@ -9,6 +9,8 @@ tags:
9
  - temporal-segmentation
10
  - subtask-annotation
11
  - robotics
 
 
12
  - droid
13
  - robocoin
14
  - galaxea
@@ -18,22 +20,71 @@ size_categories:
18
  - n<1K
19
  ---
20
 
21
- # WASUP Subtask Annotations v1
22
 
23
- Merged subtask-annotation dataset with videos embedded directly in the parquet.
24
 
25
- ## Schema
 
 
 
 
 
26
 
27
- - `id`: episode id
28
- - `video`: MP4 bytes embedded directly in the parquet
29
- - `instruction`: task instruction
30
- - `segments`: list of `{start_sec, end_sec, subtask}`
31
- - `metadata`: JSON string containing source-specific metadata that does not fit the common fields
 
 
32
 
33
  ## Sources
34
 
35
- - HomER: 25 rows
36
- - RoboInter DROID: 50 rows
37
- - RoboCOIN Galaxea R1 Lite head-camera: 25 rows
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
- Total: 100 rows, 605 subtask segments.
 
 
 
1
  ---
2
+ pretty_name: WGO-Bench
3
  task_categories:
4
  - robotics
5
  - video-classification
 
9
  - temporal-segmentation
10
  - subtask-annotation
11
  - robotics
12
+ - robot-learning
13
+ - egocentric-video
14
  - droid
15
  - robocoin
16
  - galaxea
 
20
  - n<1K
21
  ---
22
 
23
+ # WGO-Bench: What's Going On Benchmark
24
 
25
+ 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.
26
 
27
+ 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:
28
+
29
+ - **Boundary detection:** predict where one meaningful manipulation subtask ends and the next begins.
30
+ - **Subtask labeling:** given a fixed segment, describe the completed manipulation event.
31
+
32
+ ## Dataset Summary
33
 
34
+ | Metric | Value |
35
+ | --- | ---: |
36
+ | Episodes | 100 |
37
+ | Gold subtask segments | 605 |
38
+ | Source families | 3 |
39
+ | Format | Parquet |
40
+ | Video storage | MP4 bytes embedded in each row |
41
 
42
  ## Sources
43
 
44
+ | Source | Episodes |
45
+ | --- | ---: |
46
+ | HomER egocentric videos | 25 |
47
+ | RoboInter DROID station-arm videos | 50 |
48
+ | RoboCOIN Galaxea R1 Lite head-camera videos | 25 |
49
+
50
+ ## Schema
51
+
52
+ | Column | Type | Description |
53
+ | --- | --- | --- |
54
+ | `id` | string | Stable episode identifier. |
55
+ | `video` | binary | MP4 video bytes embedded directly in the parquet row. |
56
+ | `instruction` | string | High-level task instruction for the episode. |
57
+ | `segments` | list | Gold `{start_sec, end_sec, subtask}` annotations. |
58
+ | `metadata` | string | JSON metadata with source-specific fields. |
59
+
60
+ ## Quick Start
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ dataset = load_dataset("macrodata/WGO-Bench", split="train")
66
+ example = dataset[0]
67
+
68
+ print(example["instruction"])
69
+ print(example["segments"])
70
+ ```
71
+
72
+ To use the parquet directly:
73
+
74
+ ```python
75
+ import pandas as pd
76
+
77
+ df = pd.read_parquet("hf://datasets/macrodata/WGO-Bench/data/annotations.parquet")
78
+ ```
79
+
80
+ ## Annotation Policy
81
+
82
+ 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.
83
+
84
+ 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.
85
+
86
+ ## Related Resources
87
 
88
+ - Blog post: [Segmenting Robot Video into Actionable Subtasks](https://macrodata.co/blog/inferring-robot-subtasks-from-video)
89
+ - Refiner example: [Subtask annotations](https://macrodata.co/docs/examples/annotations/subtask-annotations)
90
+ - Code: [macrodata-labs/refiner](https://github.com/macrodata-labs/refiner)