anonstreammem commited on
Commit
c3df062
·
verified ·
1 Parent(s): 37bb237

Clean schema: parsed candidate JSON, removed redundant columns, added per-row license; Croissant absolute URLs

Browse files
README.md CHANGED
@@ -43,13 +43,12 @@ LLMs. Each row is a `(stream, probe, label)` tuple: the model sees a long input
43
  stream and a short probe, and must answer "yes" or "no" — did the probe occur
44
  inside the stream?
45
 
46
- This release reorganizes the original five-split bundle into three top-level
47
- splits keyed by modality + source:
48
 
49
  | split | rows | content |
50
  | --- | --- | --- |
51
- | `text` | 8,128 | text-modality questions for the synthetic substream benchmark *and* EasyHuman; the `subset` column distinguishes them. |
52
- | `synthetic_video` | 6,304 | rendered synthetic substream videos *and* EasyHuman 3-belt videos; `subset` distinguishes them. |
53
  | `natural_video` | 1,028 | EPIC-Kitchens-100 derived clips and SoccerNet provenance metadata. |
54
 
55
  ## Directory layout
@@ -63,20 +62,13 @@ anonstreammem/substream-recollection/
63
  │ ├── synthetic-and-easyhuman.txt
64
  │ └── SoccerNet-NOTE.txt
65
  ├── text/
66
- │ ├── questions.parquet # subset in {substream, easyhuman}
67
  │ └── questions.json # NDJSON copy of the parquet
68
  ├── synthetic_video/
69
- │ ├── questions.parquet # subset in {substream, easyhuman}
70
  │ ├── questions.json
71
  │ └── videos/
72
- │ ├── L_8_frames/
73
- │ ├── L_16_frames/
74
- │ ├── L_32_frames/
75
- │ ├── L_64_frames/
76
- │ ├── L_128_frames/
77
- │ ├── L_256_frames/
78
- │ ├── L_512_frames/
79
- │ ├── L_1024_frames/
80
  │ └── easyhuman_L_256_frames/
81
  └── natural_video/
82
  ├── questions.parquet
@@ -118,36 +110,36 @@ root = snapshot_download(
118
 
119
  Then `Path(root) / row["video_path"]` resolves to the actual mp4.
120
 
121
- ## Schema
122
 
123
- All three parquets share most columns. The text and synthetic_video parquets
124
- also carry `bucket` (original bucket id, e.g. `UNIFORM_EVAL_L0128_ELOW`,
125
- `len_256`) and `source_split` (the pre-merge split label). `natural_video` adds
126
- a `source_provenance` JSON column for SoccerNet rows.
127
 
128
- | column | type | notes |
129
- | --- | --- | --- |
130
- | `subset` | str | `substream` / `easyhuman` (text + synthetic_video) or bucket id like `L=128` (natural_video) |
131
- | `bucket` | str | (text + synthetic_video only) original bucket id |
132
- | `source_split` | str | pre-merge split label |
133
- | `length_L` | int64 | normalized stream length |
134
- | `entropy_band` | str | `low` / `medium` / `uniform` / `natural` / `easyhuman` |
135
- | `modality` | str | `text` or `video` |
136
- | `question_variant` | str | `sequential` / `spatial` / `binary_natural` / `easyhuman_binary` |
137
- | `video_index` | int64 | per-bucket video id |
138
- | `question_index` | int64 | per-video question position |
139
- | `question_text` | str | prompt the model sees |
140
- | `candidate` | str (JSON) | probe metadata; null when N/A |
141
- | `answer` | str | ground-truth label (`yes` / `no`) |
142
- | `clip_path` | str | relative path to the probe clip |
143
- | `video_path` | str | relative path to the parent video |
144
- | `dataset_source` | str | `synthetic` / `easyhuman` / `epic-kitchens-100` / `soccernet` |
145
- | `input_sequence` | str | comma-joined input symbols (text-mode payload) |
146
- | `source_class` | str | natural-only event class label |
147
- | `source_dataset` | str | natural-only origin tag |
148
- | `video_id` | str | canonical video id |
149
- | `question_id` | str | canonical question id |
150
- | `source_provenance` | str (JSON) | natural_video only; SoccerNet provenance |
 
 
 
151
 
152
  ## SoccerNet rows
153
 
@@ -160,12 +152,12 @@ signing the SoccerNet NDA. See `LICENSES/SoccerNet-NOTE.txt`.
160
 
161
  ## Licenses
162
 
163
- | split / source | license | file |
164
- | --- | --- | --- |
165
- | Synthetic streams (`text/subset=substream`, `synthetic_video/subset=substream`) | CC BY 4.0, Anonymous Authors 2026 | `LICENSES/synthetic-and-easyhuman.txt` |
166
- | EasyHuman (`text/subset=easyhuman`, `synthetic_video/subset=easyhuman`) | CC BY 4.0, Anonymous Authors 2026 | `LICENSES/synthetic-and-easyhuman.txt` |
167
- | EPIC-Kitchens-100 derived clips (`natural_video`) | CC BY-NC 4.0 (research use only) | `LICENSES/EPIC-Kitchens-100-CC-BY-NC-4.0.txt` |
168
- | SoccerNet derived rows (`natural_video`, provenance only) | NDA-gated source; not redistributed | `LICENSES/SoccerNet-NOTE.txt` |
169
 
170
  The top-level `license: cc-by-4.0` tag on this card refers to the
171
  Anonymous-Authors-owned splits (synthetic + EasyHuman) and to this card,
@@ -174,15 +166,3 @@ metadata, and code only. EPIC-Kitchens-100 derivatives remain CC BY-NC 4.0.
174
  ## Citation
175
 
176
  Anonymous, "Substream Recollection," 2026 (anonymized for review).
177
-
178
- <!-- SCHEMA_AUTO_BEGIN -->
179
-
180
- ## Per-row schema (cleaned 2026-05-03)
181
-
182
- **`text/questions.parquet`**: `question_id`, `stream_id`, `split`, `length_L`, `entropy_band`, `question_variant`, `question_text`, `answer`, `candidate_sequence`, `candidate_clip_start`, `candidate_clip_end`, `candidate_tag`, `candidate_present`, `input_sequence`, `license`
183
-
184
- **`synthetic_video/questions.parquet`**: `question_id`, `stream_id`, `split`, `length_L`, `entropy_band`, `question_variant`, `question_text`, `answer`, `candidate_sequence`, `candidate_clip_start`, `candidate_clip_end`, `candidate_tag`, `candidate_present`, `video_path`, `clip_path`, `license`
185
-
186
- **`natural_video/questions.parquet`**: `question_id`, `stream_id`, `split`, `length_L`, `entropy_band`, `question_variant`, `question_text`, `answer`, `candidate_sequence`, `candidate_clip_start`, `candidate_clip_end`, `candidate_tag`, `candidate_present`, `video_path`, `source_dataset`, `source_class`, `source_provenance`, `license`
187
-
188
- <!-- SCHEMA_AUTO_END -->
 
43
  stream and a short probe, and must answer "yes" or "no" — did the probe occur
44
  inside the stream?
45
 
46
+ The dataset is organized into three top-level splits keyed by modality + source:
 
47
 
48
  | split | rows | content |
49
  | --- | --- | --- |
50
+ | `text` | 8,128 | text-modality questions for the synthetic substream benchmark *and* EasyHuman; the per-row `split` column distinguishes them as `substream` vs `easyhuman`. |
51
+ | `synthetic_video` | 6,304 | rendered synthetic substream videos *and* EasyHuman 3-belt videos; per-row `split` distinguishes them. |
52
  | `natural_video` | 1,028 | EPIC-Kitchens-100 derived clips and SoccerNet provenance metadata. |
53
 
54
  ## Directory layout
 
62
  │ ├── synthetic-and-easyhuman.txt
63
  │ └── SoccerNet-NOTE.txt
64
  ├── text/
65
+ │ ├── questions.parquet
66
  │ └── questions.json # NDJSON copy of the parquet
67
  ├── synthetic_video/
68
+ │ ├── questions.parquet
69
  │ ├── questions.json
70
  │ └── videos/
71
+ │ ├── L_8_frames/ … L_1024_frames/
 
 
 
 
 
 
 
72
  │ └── easyhuman_L_256_frames/
73
  └── natural_video/
74
  ├── questions.parquet
 
110
 
111
  Then `Path(root) / row["video_path"]` resolves to the actual mp4.
112
 
113
+ ## Schema (cleaned 2026-05-03)
114
 
115
+ Common columns across all three parquets:
 
 
 
116
 
117
+ - `question_id` (str): canonical question id (note: not globally unique on its own — see "Identifiers" below)
118
+ - `stream_id` (str): id of the parent stream / video this question targets
119
+ - `split` (str): `substream` / `easyhuman` / `natural`
120
+ - `length_L` (int): normalized parent-stream length (8…4096)
121
+ - `entropy_band` (str): `low` / `medium` / `max-entropy` / `easyhuman` / `natural`
122
+ - `question_variant` (str): `sequential` / `spatial` / `easyhuman_binary` / `binary_natural`
123
+ - `question_text` (str): natural-language probe shown to the model
124
+ - `answer` (str): ground-truth `"yes"` or `"no"`
125
+ - `candidate_sequence` (list[str], nullable): probe substream as a list of token strings; null on natural rows
126
+ - `candidate_clip_start` / `candidate_clip_end` (float, nullable): probe-clip time bounds in seconds when applicable
127
+ - `candidate_tag` (str, nullable): EasyHuman category tag (e.g. `x_present`, `mistake_absent`); null on substream/natural
128
+ - `candidate_present` (bool, nullable): ground-truth substream-membership; null on natural
129
+ - `license` (str): per-row license `CC-BY-4.0`, `CC-BY-NC-4.0`, or `SoccerNet-NDA`
130
+
131
+ Per-split additional columns:
132
+
133
+ - `text/questions.parquet`: `input_sequence` (str) comma-joined input symbols (the text-modality payload)
134
+ - `synthetic_video/questions.parquet`: `video_path` (str), `clip_path` (str) repo-relative paths
135
+ - `natural_video/questions.parquet`: `video_path` (str), `source_dataset` (str: `epic-kitchens-100` or `soccernet`), `source_class` (str: e.g. `wash_plate`, `red_card`), `source_provenance` (str, JSON: SoccerNet rows only)
136
+
137
+ ### Identifiers
138
+
139
+ `question_id` is preserved from the source pipeline and is **not** globally
140
+ unique on its own (the same question id appears across multiple buckets/lengths
141
+ when the same probe is reused). The composite key
142
+ `(question_id, length_L, entropy_band, question_variant)` is unique per row.
143
 
144
  ## SoccerNet rows
145
 
 
152
 
153
  ## Licenses
154
 
155
+ | split / source | license | per-row tag | file |
156
+ | --- | --- | --- | --- |
157
+ | Synthetic streams (`text/split=substream`, `synthetic_video/split=substream`) | CC BY 4.0 | `CC-BY-4.0` | `LICENSES/synthetic-and-easyhuman.txt` |
158
+ | EasyHuman (`text/split=easyhuman`, `synthetic_video/split=easyhuman`) | CC BY 4.0 | `CC-BY-4.0` | `LICENSES/synthetic-and-easyhuman.txt` |
159
+ | EPIC-Kitchens-100 derived clips (`natural_video`, `source_dataset=epic-kitchens-100`) | CC BY-NC 4.0 (research use only) | `CC-BY-NC-4.0` | `LICENSES/EPIC-Kitchens-100-CC-BY-NC-4.0.txt` |
160
+ | SoccerNet derived rows (`natural_video`, `source_dataset=soccernet`; provenance only) | NDA-gated source; not redistributed | `SoccerNet-NDA` | `LICENSES/SoccerNet-NOTE.txt` |
161
 
162
  The top-level `license: cc-by-4.0` tag on this card refers to the
163
  Anonymous-Authors-owned splits (synthetic + EasyHuman) and to this card,
 
166
  ## Citation
167
 
168
  Anonymous, "Substream Recollection," 2026 (anonymized for review).
 
 
 
 
 
 
 
 
 
 
 
 
natural_video/questions.json CHANGED
The diff for this file is too large to render. See raw diff
 
natural_video/questions.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2cf35973ba35065a54d244a49287445a0f29009d462c469bec4450fb58384f44
3
- size 22823
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51c2b24788be55cb05a9ccf01141941ac17033b4b5ceccd9bcf2842f787aa0ca
3
+ size 24798
synthetic_video/questions.json CHANGED
The diff for this file is too large to render. See raw diff
 
synthetic_video/questions.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5ee822ae6d5bc89c9721bf5cd3baa075731f7bda039737c3878aebeb9b7ffbae
3
- size 79243
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73b99a8583857f34f01c54bc350b5fd0079c33ff72f4027ef328d08b085b15cc
3
+ size 111881
text/questions.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fd873ae313653127cea301f765bb0d90763766dd34e85610b1899dce5c817a62
3
- size 18594461
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66446f896b96ad40f6a272884c48629c5a862c75fbb79fef06f5bb56cd6cc263
3
+ size 18908001
text/questions.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:912f5bb4f53051518c4e40c5e5d85ffce63d6e2b68aefe61e3a539ebf68f6744
3
- size 319715
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:768e0dcc4542c9eaba744da8882ccea21b90df99b18e8d10b7e4c1e80f673ec8
3
+ size 367170