Yayuan Li commited on
Commit
2049ac3
·
1 Parent(s): bce343c
Files changed (1) hide show
  1. README.md +45 -57
README.md CHANGED
@@ -62,25 +62,16 @@ MATT-Bench provides large-scale benchmarks for **Mistake Attribution (MATT)**
62
 
63
  The benchmarks are constructed by **MisEngine**, a data engine that automatically creates mistake samples with attribution-rich annotations from existing egocentric action datasets:
64
 
65
- | Dataset | Samples | Instruction Texts | Semantic | Temporal | Spatial |
66
- |---|---|---|---|---|---|
67
- | **Ego4D-M** | 220,800 | 19,467 | ✓ | ✓ | ✓ |
68
- | **EPIC-KITCHENS-M** | 299,715 | 12,283 | ✓ | — | — |
69
 
70
  These are at least **two orders of magnitude larger** than any existing mistake dataset. Instruction-text counts = unique (predicate `V`, argument `ARG1`) pairs.
71
 
72
  A third source, **HoloAssist-M**, is released alongside as an additional benchmark — see [Extended: HoloAssist-M](#extended-holoassist-m) below.
73
 
74
- ## Annotations
75
-
76
- Each sample consists of an instruction text and an attempt video clip, annotated with:
77
-
78
- - **Semantic Attribution**: Which semantic role (predicate `V`, argument `ARG1`) in the instruction is violated in the attempt video.
79
- - **Temporal Attribution**: The Point-of-No-Return (PNR) frame where the mistake becomes irreversible. Inherited from Ego4D's native PNR annotations — available on **Ego4D-M only**.
80
- - **Spatial Attribution**: Bounding box localizing the mistake region in the PNR frame. Inherited from Ego4D's native bbox annotations — available on **Ego4D-M only**.
81
-
82
- ## Repository Layout
83
-
84
  ```
85
  MATT-Bench/
86
  ├── ego4d/
@@ -101,8 +92,8 @@ MATT-Bench/
101
 
102
  MATT-Bench has two parts that you obtain separately:
103
 
104
- 1. **Annotations** — hosted here, download via `hf` or `git clone`.
105
- 2. **Video media** — **not** hosted here. Download from each source dataset using the instructions below. We only mirror the annotations; original videos retain their upstream licenses.
106
 
107
  ### Annotations (this repo)
108
 
@@ -124,59 +115,56 @@ epic_m = load_dataset("mistakeattribution/MATT-Bench", "epickitchens")
124
  holo_m = load_dataset("mistakeattribution/MATT-Bench", "holoassist")
125
  ```
126
 
127
- Or read the xlsx directly:
128
-
129
- ```python
130
- import pandas as pd
131
- df = pd.read_excel("MATT-Bench/ego4d/train.xlsx")
132
- ```
133
-
134
  ### Video media
135
 
136
- #### Ego4D (FHO benchmark clips only)
137
-
138
- MATT-Bench uses **only the FHO (Forecasting Hands and Objects) benchmark clips** from Ego4D, not the full 3,000-hour dataset.
139
 
140
- 1. Sign the Ego4D license agreement at <https://ego4d.dev/request/ego4d> (approval ~48h; credentials expire 14 days after approval).
141
- 2. Install the CLI (`pip install ego4d`) and download:
142
 
143
- ```bash
144
- ego4d --output_directory="~/ego4d_data" --datasets clips --benchmarks FHO
145
- ```
 
146
 
147
- Docs: <https://ego4d-data.org/docs/CLI/>. The `video_uid` and `clip1_uid` fields in our annotations correspond to Ego4D's native video and clip UIDs; `start_frame` / `end_frame` are inherited from Ego4D's FHO annotations.
148
 
149
  #### EPIC-KITCHENS-100
150
 
151
- Standard EPIC-KITCHENS-100 download no access form required.
152
 
 
153
  ```bash
154
  git clone https://github.com/epic-kitchens/epic-kitchens-download-scripts
155
  cd epic-kitchens-download-scripts
156
  python epic_downloader.py --rgb-frames # or --videos
157
  ```
158
 
159
- Project page: <https://epic-kitchens.github.io/>. MATT-Bench's `video_id` matches EPIC's participant-video identifier (e.g. `P22_16`); `start_frame` / `end_frame` index the RGB frame sequence.
160
 
161
  #### HoloAssist
 
 
 
162
 
163
- Standard HoloAssist download — no access form required (CDLAv2 permissive license).
 
 
 
 
164
 
165
- Direct download instructions: <https://holoassist.github.io/>. MATT-Bench's `video_id` matches HoloAssist's video identifier (e.g. `R076-21July-DSLR`).
166
 
167
  ## Data Schema
168
 
169
  ### `ego4d/{train,valid,test}.xlsx` — 13 columns
170
 
171
- | Column | Description |
172
- |---|---|
173
- | `video_uid` | Ego4D video UID (full video) |
174
- | `start_frame`, `end_frame` | Frame bounds of the attempt clip |
175
- | `clip1_uid`, `clip1_start_frame`, `clip1_end_frame` | Primary Ego4D clip |
176
- | `clip2_uid`, `clip2_start_frame`, `clip2_end_frame` | Paired clip for comparison (`Not required` / `-1` when absent) |
177
- | `V`, `ARG1` | Predicate and argument from the instruction (e.g. `plays`, `lawn tennis`) |
178
- | `label` | Mistake label |
179
- | `split` | Split identifier |
180
 
181
  ### `ego4d/parquet.xlsx` — 29 columns (MisEngine reproduction data)
182
 
@@ -184,23 +172,23 @@ Ego4D narration-level records with semantic-role labels (`ARG0`, `V`, `ARG1`), f
184
 
185
  ### `epickitchens/{train,validation}.xlsx` and `holoassist/{train,validation}.xlsx` — 8 columns
186
 
187
- | Column | Description |
188
- |---|---|
189
- | `video_id` | Source-dataset video identifier |
190
- | `start_frame`, `end_frame` | Frame bounds of the attempt clip |
191
- | `V`, `ARG1` | Predicate and argument from the (possibly corrupted) instruction |
192
- | `label` | Mistake label |
193
- | `actual_V`, `actual_ARG1` | Ground-truth predicate/argument as performed |
194
 
195
- ## Extended: HoloAssist-M
196
 
197
  **HoloAssist-M** is an additional MATT benchmark released alongside MATT-Bench. It is **not** part of the main two-dataset evaluation reported in the CVPR 2026 paper; it uses the same MisEngine pipeline applied to the HoloAssist dataset.
198
 
199
- | Dataset | Samples | Instruction Texts | Semantic | Temporal | Spatial |
200
- |---|---|---|---|---|---|
201
- | **HoloAssist-M** | 562,209 | 1,786 | ✓ | — | — |
202
 
203
- Schema matches EPIC-KITCHENS-M (semantic attribution only — HoloAssist does not provide native PNR or bbox annotations).
204
 
205
  ## Citation
206
 
 
62
 
63
  The benchmarks are constructed by **MisEngine**, a data engine that automatically creates mistake samples with attribution-rich annotations from existing egocentric action datasets:
64
 
65
+ | Dataset | Samples | Instruction Texts | Semantic | Temporal | Spatial |
66
+ |---------------------|---------|-------------------|----------|----------|---------|
67
+ | **Ego4D-M** | 220,800 | 19,467 | ✓ | ✓ | ✓ |
68
+ | **EPIC-KITCHENS-M** | 299,715 | 12,283 | ✓ | — | — |
69
 
70
  These are at least **two orders of magnitude larger** than any existing mistake dataset. Instruction-text counts = unique (predicate `V`, argument `ARG1`) pairs.
71
 
72
  A third source, **HoloAssist-M**, is released alongside as an additional benchmark — see [Extended: HoloAssist-M](#extended-holoassist-m) below.
73
 
74
+ **Repository Layout**
 
 
 
 
 
 
 
 
 
75
  ```
76
  MATT-Bench/
77
  ├── ego4d/
 
92
 
93
  MATT-Bench has two parts that you obtain separately:
94
 
95
+ 1. **Annotations** — semantic attribution annotations are hosted here, download via `hf` or `git clone`. Temporal and spatial attribution annotations are inherited from the original dataset.
96
+ 2. **Video media** — **not** hosted here. Download from each source dataset using the instructions below. Original videos retain their upstream licenses.
97
 
98
  ### Annotations (this repo)
99
 
 
115
  holo_m = load_dataset("mistakeattribution/MATT-Bench", "holoassist")
116
  ```
117
 
 
 
 
 
 
 
 
118
  ### Video media
119
 
120
+ #### Ego4D
 
 
121
 
122
+ Follow <https://ego4d-data.org/docs/CLI/> to download. The `video_uid` and `clip1_uid` fields in our annotations correspond to Ego4D's native video and clip UIDs.
 
123
 
124
+ MATT-Bench uses the FHO (Forecasting Hands and Objects) benchmark clips from Ego4D. Example downloading script:
125
+ ```bash
126
+ ego4d --output_directory="~/ego4d_data" --datasets clips --benchmarks FHO
127
+ ```
128
 
 
129
 
130
  #### EPIC-KITCHENS-100
131
 
132
+ Follow <https://epic-kitchens.github.io/> to download. MATT-Bench's `video_id` matches EPIC's participant-video identifier (e.g. `P22_16`); `start_frame` / `end_frame` index the RGB frame sequence.
133
 
134
+ Example download script:
135
  ```bash
136
  git clone https://github.com/epic-kitchens/epic-kitchens-download-scripts
137
  cd epic-kitchens-download-scripts
138
  python epic_downloader.py --rgb-frames # or --videos
139
  ```
140
 
 
141
 
142
  #### HoloAssist
143
+ Although not reported in the paper, we also support the HoloAssist dataset.
144
+
145
+ Download the following from the [HoloAssist project page](https://holoassist.github.io/):
146
 
147
+ | Resource | Link | Size |
148
+ |------------------------|------------------------------------------------------------------------------------------------------------------------------------------|-----------|
149
+ | Videos (pitch-shifted) | [video_pitch_shifted.tar](https://hl2data.z5.web.core.windows.net/holoassist-data-release/video_pitch_shifted.tar) | 184.20 GB |
150
+ | Labels | [data-annotation-trainval-v1_1.json](https://hl2data.z5.web.core.windows.net/holoassist-data-release/data-annotation-trainval-v1_1.json) | 111 MB |
151
+ | Dataset splits | [data-splits-v1_2.zip](https://holoassist.github.io/label_files/data-splits-v1_2.zip) | — |
152
 
153
+ MATT-Bench's `video_id` matches HoloAssist's video identifier (e.g. `R076-21July-DSLR`).
154
 
155
  ## Data Schema
156
 
157
  ### `ego4d/{train,valid,test}.xlsx` — 13 columns
158
 
159
+ | Column | Description |
160
+ |-----------------------------------------------------|----------------------------------------------------------------------------------------|
161
+ | `video_uid` | Ego4D video UID (full video) |
162
+ | `start_frame`, `end_frame` | Frame bounds of the attempt clip |
163
+ | `clip1_uid`, `clip1_start_frame`, `clip1_end_frame` | Primary Ego4D clip |
164
+ | `clip2_uid`, `clip2_start_frame`, `clip2_end_frame` | Some actions are distributed across two clips (`Not required` / `-1` when absent) |
165
+ | `V`, `ARG1` | Predicate and argument from the instruction (e.g. `pick up`, `apple`) |
166
+ | `label` | Mistake label. 0: Correct; 1: Mistaken Predicate; 2: Mistaken Object; 3: Mistaken Both |
167
+ | `split` | dataset split identifier |
168
 
169
  ### `ego4d/parquet.xlsx` — 29 columns (MisEngine reproduction data)
170
 
 
172
 
173
  ### `epickitchens/{train,validation}.xlsx` and `holoassist/{train,validation}.xlsx` — 8 columns
174
 
175
+ | Column | Description |
176
+ |----------------------------|---------------------------------------------------------|
177
+ | `video_id` | Source-dataset video identifier |
178
+ | `start_frame`, `end_frame` | Frame bounds of the attempt clip |
179
+ | `V`, `ARG1` | Predicate and argument of the instruction text |
180
+ | `label` | Mistake label |
181
+ | `actual_V`, `actual_ARG1` | Predicate/argument of the action performed in the video |
182
 
183
+ ### Extended: HoloAssist-M
184
 
185
  **HoloAssist-M** is an additional MATT benchmark released alongside MATT-Bench. It is **not** part of the main two-dataset evaluation reported in the CVPR 2026 paper; it uses the same MisEngine pipeline applied to the HoloAssist dataset.
186
 
187
+ | Dataset | Samples | Instruction Texts | Semantic | Temporal | Spatial |
188
+ |------------------|---------|-------------------|----------|----------|---------|
189
+ | **HoloAssist-M** | 562,209 | 1,786 | ✓ | — | — |
190
 
191
+ Schema matches EPIC-KITCHENS-M (semantic attribution only — HoloAssist does not provide native PNR frame number andb bbox annotations).
192
 
193
  ## Citation
194